Return the actual answer excerpts where a brand is mentioned: how ChatGPT, Perplexity, and others describe you (or a rival).
Use this for how a model describes a brand. Rank is aiseo_list_prompts. Default
brandis the project name. Pass a competitor to compare voice.
Why you need it
A rank of 1 does not tell you if the model called you “enterprise CRM” or “cheap HubSpot alternative.” Snippets are the quotes you need for:
- Brand-voice audits (you vs a rival on the same prompts).
- Comparison-page drafts that match how models already talk.
- Checking whether answers repeat a wrong category, pricing claim, or competitor pairing.
Call aiseo_list_competitors first if you do not know the rival names.
Capabilities
- Return answer excerpts with prompt, model label, timestamp, and optional source URL.
- Default to your brand (project name) when
brandis omitted. - Switch brand to a competitor name or slug for a side-by-side.
Snippets are capped (about 50). They cover recent analyses, not the full history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
projectSlug | string | Yes | From aiseo_list_projects |
brand | string | No | Brand name or slug. Defaults to the project name |
If brand does not match a known brand on the project, the tool returns an error (not an empty list).
Input
Your brand:
{
"projectSlug": "acme"
}
A rival:
{
"projectSlug": "acme",
"brand": "HubSpot"
}
Output
{
"brand": "Acme",
"project": {
"name": "Acme",
"slug": "acme"
},
"snippets": [
{
"createdAt": "2026-08-12T09:14:00.000Z",
"prompt": "best crm for startups",
"provider": "ChatGPT",
"sourceUrl": "https://www.g2.com/categories/crm",
"text": "Acme is often recommended for early-stage teams that want a simpler CRM than HubSpot, with built-in pipelines and a free tier."
},
{
"createdAt": "2026-08-11T16:02:00.000Z",
"prompt": "acme vs hubspot",
"provider": "Perplexity",
"sourceUrl": null,
"text": "HubSpot has a larger app ecosystem; Acme is usually positioned as the lighter alternative."
}
]
}