List alignment claims
Individual alignment claims, with their status and evidence.
GET /brands/{brand_id}/alignment/claimsAuthorization
| 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. |
status | string, repeatable | optional | Restrict to these claim statuses. |
execution_date | YYYY-MM-DD | optional | The run to report on. Defaults to the latest. |
category_id | uuid, repeatable | optional | Restrict to these claim categories. |
engine | string, repeatable | optional | Restrict to these AI search engines, by slug. From List engines. Narrows the population before metrics are computed. |
country | string, repeatable | optional | Restrict to these execution country codes. Narrows the population before metrics are computed. |
search | string | optional | Case-insensitive substring of the claim text. |
Request
curl https://api.askylabs.com/v1/brands/BRAND_ID/alignment/claims \
-H "Authorization: Bearer $ASKY_API_KEY"Response
{
"data": [],
"pagination": {
"limit": 2,
"has_more": false,
"next_cursor": null
},
"meta": {
"execution_date": null,
"total": 0
},
"request_id": "req_451fa84da85a4b7bbc66"
}Last updated on