Visibility
Access visibility scores, chart data, and overview metrics
The visibility API returns aggregated data about your brand's presence in AI search responses.
Overview
GET /visibility/overviewReturns a comprehensive visibility summary including current scores, trends, chart data, competitors, and top sources.
Query parameters
| Param | Type | Required | Description |
|---|---|---|---|
propertyId | string | Yes | The property to query |
dateFrom | string | No | Start date (ISO 8601) |
dateTo | string | No | End date (ISO 8601) |
platforms | string | No | Comma-separated platform filter |
Response
{
"current_percent": 42.5,
"previous_percent": 38.2,
"trend": "up",
"citation_count": 127,
"chart_data": [
{
"date": "2026-03-01",
"visibility": 38.2,
"citations": 15,
"mentions": 23
}
],
"competitors": [
{
"domain": "competitor.com",
"visibility": 35.1,
"trend": "stable"
}
],
"top_sources": [
{
"platform": "chatgpt",
"citation_rate": 0.45,
"mention_rate": 0.62
}
]
}