Skip to main content
GET
/
ai-analytics-service
/
api
/
public
/
v1
/
analytics
/
overview
/
summary
Get Overview Summary
curl --request GET \
  --url https://api.slatehq.ai/ai-analytics-service/api/public/v1/analytics/overview/summary \
  --header 'Authorization: <authorization>'
{
  "brand": {
    "id": 123,
    "name": "<string>"
  },
  "kpis": {
    "mentions": {
      "mentions": 123,
      "runsWithBrand": 123,
      "totalRuns": 123,
      "mentionRatePct": 123,
      "delta": 123
    },
    "avgPosition": {
      "value": 123,
      "delta": 123
    },
    "visibilityPct": {
      "value": 123,
      "delta": 123
    },
    "shareOfVoicePct": {
      "value": 123,
      "delta": 123
    }
  },
  "entities": [
    {
      "name": "<string>",
      "type": "<string>",
      "mentions": 123,
      "avgPosition": 123,
      "visibilityPct": 123,
      "shareOfVoicePct": 123
    }
  ],
  "platforms": [
    {
      "platform": "<string>",
      "runs": 123,
      "mentions": 123,
      "visibilityPct": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://slatehq.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns a compact overview of your brand’s AI search performance. Includes KPIs (mentions, average position, visibility, share of voice), a ranked list of entities (brand + competitors), and per-platform stats. All metrics include period-over-period deltas.

Parameters

Authorization
string
required
Bearer token. Format: Bearer slat_<your-token>.
dateRange
integer
Number of days for the analysis window (e.g., 7, 30, 90).
from
string
Start of date range. ISO 8601 format (e.g., 2026-02-01T00:00:00Z).
to
string
End of date range. ISO 8601 format.
brandId
number
Brand ID. Optional — if omitted, uses the workspace’s default brand.
topicId
number
Filter by topic ID.
platforms
string[]
Filter by one or more platforms: CHATGPT, PERPLEXITY, GOOGLE_AI_OVERVIEW, GOOGLE_AI_MODE, GEMINI, CLAUDE.
region
string
Filter by ISO country code for region.
promptId
number
Filter by a single prompt ID.
promptIds
number[]
Filter by multiple prompt IDs. Maximum 10 values.

Response

Returns 200 OK with the overview summary.
brand
object
required
Brand reference.
kpis
object
required
Key performance indicators with period-over-period comparison.
entities
object[]
required
Ranked list of brands and competitors.
platforms
object[]
required
Per-platform performance breakdown.

Example

curl -s "https://api.slatehq.ai/ai-analytics-service/api/public/v1/analytics/overview/summary?dateRange=30&topicId=42" \
  -H "Authorization: Bearer slat_YOUR_TOKEN"

Response

{
  "brand": {
    "id": 5,
    "name": "MyBrand"
  },
  "kpis": {
    "mentions": {
      "mentions": 120,
      "runsWithBrand": 85,
      "totalRuns": 200,
      "mentionRatePct": 42.5,
      "delta": 15
    },
    "avgPosition": { "value": 2.3, "delta": -0.5 },
    "visibilityPct": { "value": 78.0, "delta": 3.2 },
    "shareOfVoicePct": { "value": 35.5, "delta": 2.1 }
  },
  "entities": [
    {
      "name": "MyBrand",
      "type": "BRAND",
      "mentions": 120,
      "avgPosition": 2.3,
      "visibilityPct": 78.0,
      "shareOfVoicePct": 35.5
    },
    {
      "name": "CompetitorA",
      "type": "COMPETITOR",
      "mentions": 90,
      "avgPosition": 3.1,
      "visibilityPct": 65.0,
      "shareOfVoicePct": 26.7
    }
  ],
  "platforms": [
    { "platform": "CHATGPT", "runs": 80, "mentions": 55, "visibilityPct": 82.0 },
    { "platform": "PERPLEXITY", "runs": 60, "mentions": 40, "visibilityPct": 75.0 },
    { "platform": "GEMINI", "runs": 60, "mentions": 25, "visibilityPct": 70.0 }
  ]
}

Status codes

StatusDescription
200Overview summary returned.
400promptIds exceeds maximum of 10 values.
401Missing or invalid Bearer token. See Authentication.
500Internal server error.

What’s next