List alignment prompts
Alignment prompts and how each performed on the latest run.
GET /brands/{brand_id}/alignment/promptsAuthorization
| 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. |
execution_date | YYYY-MM-DD | optional | The run to report on. Defaults to the latest. |
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. |
Request
curl https://api.askylabs.com/v1/brands/BRAND_ID/alignment/prompts \
-H "Authorization: Bearer $ASKY_API_KEY"Response
{
"data": [],
"pagination": {
"limit": 2,
"has_more": false,
"next_cursor": null
},
"meta": {
"execution_date": null
},
"request_id": "req_44dbb36e53ba4e21ae1f"
}Last updated on