Answers
Individual AI answers with their cited URLs and brand/competitor mentions.
The Brand Kit ID
The ID of the Brand Kit
Start date (ISO 8601) on aeo_analyses.created_at. Defaults to 30 days ago.
End date (ISO 8601) on aeo_analyses.created_at. Defaults to today.
Filter answers by a single prompt (question) ID.
When set, filter to answers where the brand was (or was not) mentioned.
Page number
1Items per page
25Successful response
Bad request - invalid parameters, filters, or sort options
Unauthorized - invalid or missing authentication token
Not found - resource does not exist
Precondition failed - AEO not configured for this brand kit
POST /public_api/brand_kits/{brand_kit_id}/answers/list HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 176
{
"brand_kit_id": 1,
"start_date": "text",
"end_date": "text",
"prompt_id": 1,
"providers": [
"chat_gpt"
],
"countries": [
"AE"
],
"brand_mentioned": true,
"fields": [
"id"
],
"page": 1,
"per_page": 25
}{
"data": [
{
"id": 1,
"date": "text",
"text": "text",
"prompt": "text",
"intent_stage": "awareness",
"citations": [
"text"
],
"mentions": [
"text"
],
"persona": "text",
"provider": "chat_gpt",
"country": "AE",
"brand_mentioned": true
}
],
"meta": {
"page": 1,
"per_page": 1,
"total_count": 1,
"total_pages": 1
}
}Individual AI answers with their cited URLs and brand/competitor mentions.
The Brand Kit ID
The ID of the Brand Kit
Start date (ISO 8601) on aeo_analyses.created_at. Defaults to 30 days ago.
End date (ISO 8601) on aeo_analyses.created_at. Defaults to today.
Filter answers by a single prompt (question) ID.
When set, filter to answers where the brand was (or was not) mentioned.
Resource ID
Successful response
Bad request - invalid parameters, filters, or sort options
Unauthorized - invalid or missing authentication token
Not found - resource does not exist
Precondition failed - AEO not configured for this brand kit
POST /public_api/brand_kits/{brand_kit_id}/answers/show HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 160
{
"brand_kit_id": 1,
"start_date": "text",
"end_date": "text",
"prompt_id": 1,
"providers": [
"chat_gpt"
],
"countries": [
"AE"
],
"brand_mentioned": true,
"id": 1,
"fields": [
"id"
]
}{
"data": {
"id": 1,
"date": "text",
"text": "text",
"prompt": "text",
"intent_stage": "awareness",
"citations": [
"text"
],
"mentions": [
"text"
],
"persona": "text",
"provider": "chat_gpt",
"country": "AE",
"brand_mentioned": true
}
}Last updated
Was this helpful?