Light Docs
API Reference

Get Licenses

Get all licenses paginated.

GET
/api/v1/licenses

Query Parameters

page?integer

The page number to get licenses from.

Range1 <= value

Header Parameters

x-api-keystring

The API key to authenticate with.

Response Body

application/json

curl -X GET "https://loading/api/v1/licenses" \  -H "x-api-key: your-api-key-from-config"
{
  "licenses": [
    {
      "id": "string",
      "userId": "string",
      "creatorId": "string",
      "productId": "string",
      "expires": "string",
      "maxIps": 0
    }
  ],
  "nextPage": 0
}