> For the complete documentation index, see [llms.txt](https://help.opuna.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.opuna.com/api/bot-access.md).

# Bot access

To check code create GET request with parameters:

```
https://api.opuna.com/v1/license/verify/<ACCOUNT_ID>/<CODE>
```

Details:

* ACCOUNT\_ID – copy from the form
* CODE – receive from user

Example output:

```
{
  "success": true,
  "message": "Valid license key",
  "subscription": {
    "status": "ACTIVE",
    "expires_at": "2024-05-17T05:00:48.548+00:00",
    "price_recurring_amount": 10000
  },
  "license_code": {
    "used": 2,
    "usage_limit": 1,
    "active": true
  }
}
```
