Prompts
Questions are the AI prompts that can be asked about a brand. They are used to get AI answers with citations and mentions.
The Brand Kit ID
The ID of the Brand Kit
Start date for metrics (ISO 8601). Defaults to 1 month ago.
End date for metrics (ISO 8601). Defaults to today.
Filter metrics by persona IDs
Sort field. Prefix with - for descending.
Available sort fields:
- text/-text: Sort alphabetically by prompt text
- created_at/-created_at: Sort by creation date
- prompt_volume/-prompt_volume: Sort by prompt volume level
- mention_rate/-mention_rate: Sort by mention rate
- positive_answer_rate/-positive_answer_rate: Sort by positive answer rate
- citation_rate/-citation_rate: Sort by citation rate
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}/prompts/list HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 288
{
"brand_kit_id": 1,
"tags": {
"operator": "IN",
"value": [
1
]
},
"start_date": "text",
"end_date": "text",
"providers": [
"chat_gpt"
],
"countries": [
"AE"
],
"personas": [
1
],
"filters": [
{
"field": "text",
"operator": "EQUALS",
"value": null
}
],
"includes": [
"topic"
],
"fields": [
"id"
],
"sort": "text",
"page": 1,
"per_page": 25
}{
"data": [
{
"id": 1,
"text": "text",
"keyword": "text",
"brand_mentioned": true,
"prompt_volume": "very_low",
"search_volume": 1,
"topic_id": 1,
"created_at": "text",
"updated_at": "text",
"mention_rate": 1,
"positive_answer_rate": 1,
"citation_rate": 1,
"mention_rate_trend": 1,
"positive_answer_rate_trend": 1,
"citation_rate_trend": 1,
"query_fanouts": [
{}
],
"countries": [
"text"
],
"persona_ids": [
1
],
"platforms": [
"text"
],
"est_answers_mo": 1,
"topic": {},
"tags": [
{}
]
}
],
"meta": {
"page": 1,
"per_page": 1,
"total_count": 1,
"total_pages": 1
}
}Questions are the AI prompts that can be asked about a brand. They are used to get AI answers with citations and mentions.
The Brand Kit ID
The 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
GET /public_api/brand_kits/{brand_kit_id}/prompts/{id} HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": {
"id": 1,
"text": "text",
"keyword": "text",
"brand_mentioned": true,
"prompt_volume": "very_low",
"search_volume": 1,
"topic_id": 1,
"created_at": "text",
"updated_at": "text",
"mention_rate": 1,
"positive_answer_rate": 1,
"citation_rate": 1,
"mention_rate_trend": 1,
"positive_answer_rate_trend": 1,
"citation_rate_trend": 1,
"query_fanouts": [
{}
],
"countries": [
"text"
],
"persona_ids": [
1
],
"platforms": [
"text"
],
"est_answers_mo": 1,
"topic": {},
"tags": [
{}
]
}
}Last updated
Was this helpful?