> For the complete documentation index, see [llms.txt](https://licensex.gitbook.io/licensex/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://licensex.gitbook.io/licensex/api-endpoints/license-check.md).

# /license/check

## Example request

```json
{
    "license": string,
    "product": string
}
```

## Responses

### 200 - License is valid

```json
{
    "success": true,
    "message": "License is valid",
    "code": 200
}
```

### 404 - License is invalid

```json
{
    "success": false,
    "message": "License is invalid",
    "code": 404
}
```

### 400 -  IP Limit

```javascript
{
    "success": false,
    "message": "You have reached the maximum amount of IP addresses for this product!",
    "code": 400
}
```
