List engines
The exact engine names this brand has data for — ChatGPT, Perplexity, Google AI Overviews and so on.
These strings are the accepted values for the engine filter everywhere else. A value not from
this list matches nothing rather than erroring, so resolve names here first rather than guessing at
spelling or casing.
GET /v1/brands/{brand_id}/modelsAuthorization
| Header | Type | Required |
|---|---|---|
Authorization | Bearer asky_sk_… | required |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
brand_id | uuid | required | From List brands |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | Rows per page, 1 to 100. Defaults to 20. |
cursor | string | optional | Opaque cursor from the previous response. Treat it as a token, never construct one. |
Request
cURL
curl --request GET \
--url 'https://api.askylabs.com/v1/brands/242546de-4cee-4a7d-952e-f6aa60c63ef8/models' \
--header 'Authorization: Bearer <api-key>'Response
200
{
"data": [
"ChatGPT",
"Perplexity",
"Google AI Overview",
"Gemini",
"Copilot"
],
"pagination": {
"limit": 20,
"has_more": true,
"next_cursor": "eyJ2IjoxLCJvIjoyMCwibCI6MjB9"
},
"request_id": "req_7e5901ba3cf84d20b8a6"
}Response fields
| Field | Type | Description |
|---|---|---|
data.models | string[] | required. Engine names, exactly as the engine filter expects them |
data.count | integer | required |
request_id | string | required. Also returned as the x-request-id header. Quote it when contacting support |
Errors
| Status | Code | When |
|---|---|---|
| 400 | invalid_request | A parameter is unknown or malformed. The message names it |
| 401 | invalid_token | The key is missing, malformed, or does not exist |
| 401 | token_expired | The key passed its expiry date |
| 401 | token_revoked | The key was revoked |
| 404 | not_found | The brand does not exist, or this key is not allowed to reach it. The two are deliberately indistinguishable |
| 429 | rate_limited | Over 300 requests per minute. See the Retry-After header |
Notes
The list reflects engines this brand has actually been executed against, not everything the platform supports. A newly added brand may return fewer engines until its first run completes.
Last updated on