curl --request GET \
--url https://api.scrunchai.com/v1/{brand_id}/responses \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scrunchai.com/v1/{brand_id}/responses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scrunchai.com/v1/{brand_id}/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrunchai.com/v1/{brand_id}/responses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scrunchai.com/v1/{brand_id}/responses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scrunchai.com/v1/{brand_id}/responses")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrunchai.com/v1/{brand_id}/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"total": 123,
"items": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"prompt_id": 123,
"prompt": "<string>",
"persona_id": 123,
"stage": "<string>",
"branded": true,
"platform": "<string>",
"brand_present": true,
"response_text": "<string>",
"persona_name": "<string>",
"country": "<string>",
"tags": [],
"key_topics": [],
"brand_sentiment": "<string>",
"brand_position": "<string>",
"competitors_present": [],
"citations": [],
"competitors": [],
"query_fanout": {
"queries": [
"<string>"
],
"engine_metadata": {}
},
"shopping_results": []
}
],
"offset": 0,
"limit": 123,
"metadata": {
"aggregation_granularity": "daily",
"period_count": 123,
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z",
"top_domains": {
"domains": [
{
"domain": "<string>",
"domain_owner": "<string>",
"observation_count": 123
}
],
"grand_total": 123,
"owner_totals": {},
"owner_time_series": [
{
"time_bucket": "<string>",
"brand": 123,
"competitor": 123,
"other": 123
}
],
"segment_totals": [
{
"name": "<string>",
"observation_count": 123
}
]
}
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}List Responses
Returns AI responses (observations) with full evaluation data, citations, and competitor analysis. Each response represents a single AI-generated answer to a tracked prompt.
This endpoint provides the raw response data needed for deep analysis, audits, and research. For aggregated metrics, use the Query API instead.
Response data includes:
- Full response text from the AI platform
- Brand evaluation (presence, sentiment, position)
- Competitor evaluations with individual metrics
- Citations with source classification (brand/competitor/other)
- Prompt and persona context
curl --request GET \
--url https://api.scrunchai.com/v1/{brand_id}/responses \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scrunchai.com/v1/{brand_id}/responses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scrunchai.com/v1/{brand_id}/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrunchai.com/v1/{brand_id}/responses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scrunchai.com/v1/{brand_id}/responses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scrunchai.com/v1/{brand_id}/responses")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrunchai.com/v1/{brand_id}/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"total": 123,
"items": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"prompt_id": 123,
"prompt": "<string>",
"persona_id": 123,
"stage": "<string>",
"branded": true,
"platform": "<string>",
"brand_present": true,
"response_text": "<string>",
"persona_name": "<string>",
"country": "<string>",
"tags": [],
"key_topics": [],
"brand_sentiment": "<string>",
"brand_position": "<string>",
"competitors_present": [],
"citations": [],
"competitors": [],
"query_fanout": {
"queries": [
"<string>"
],
"engine_metadata": {}
},
"shopping_results": []
}
],
"offset": 0,
"limit": 123,
"metadata": {
"aggregation_granularity": "daily",
"period_count": 123,
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z",
"top_domains": {
"domains": [
{
"domain": "<string>",
"domain_owner": "<string>",
"observation_count": 123
}
],
"grand_total": 123,
"owner_totals": {},
"owner_time_series": [
{
"time_bucket": "<string>",
"brand": 123,
"competitor": 123,
"other": 123
}
],
"segment_totals": [
{
"name": "<string>",
"observation_count": 123
}
]
}
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier for the brand
Query Parameters
Filter responses by AI platform.
Supported platforms:
chatgpt- OpenAI ChatGPTclaude- Anthropic Claudegoogle_ai_overviews- Google AI Overviews (Search)perplexity- Perplexity AImeta- Meta AIgoogle_ai_mode- Google AI Modegoogle_gemini- Google Geminicopilot- Microsoft Copilot
chatgpt, claude, google_ai_overviews, perplexity, meta, google_ai_mode, google_gemini, copilot, grok Filter responses to a specific prompt by its ID
Filter responses to a specific persona by its ID
Filter responses by customer journey stage. Values are resolved from your brand's configured stages, so they vary per brand.
Default stage sets:
- Intent (v1) —
Advice,Awareness,Evaluation,Comparison,Other - Funnel (v2) —
Awareness,Consideration,Conversion,Loyalty,Other
Brands that rename or add stages accept those custom names too.
Only return responses collected on or after this date (inclusive). Format: YYYY-MM-DD
Only return responses collected before this date (exclusive). Format: YYYY-MM-DD
Filter responses by shopping data presence. True returns only responses with shopping results, False returns only responses without.
Maximum number of responses to return per page
x >= 1Number of responses to skip for pagination
x >= 0