List citation sources for a project: the pages and domains models already cite when they answer tracked prompts.
Use this for pages and domains AI already cites. Ranks live on aiseo_list_prompts. Quote-level wording lives on aiseo_list_snippets.
Why you need it
AI answers lean on a small set of URLs. This tool is that set for the project: Reddit threads, listicles, docs, blogs. Citation outreach and Reddit SEO start here so they do not scrape the live web.
Use it when you need to:
- Pitch sites that already appear in AI answers.
- See whether Reddit, Wikipedia, or a competitor blog dominates citations.
- Filter to one host (
reddit.com,g2.com) before drafting outreach.
Capabilities
- List citation URLs with title, domain, and mention count.
- Attach the prompts each source appeared on.
- Filter by domain substring (
reddit,g2.com).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
projectSlug | string | Yes | From aiseo_list_projects |
domain | string | No | Case-sensitive substring match on source.domain |
domain is a substring, not a full-host equals. "reddit" matches www.reddit.com. "g2" matches www.g2.com.
Input
All sources:
{
"projectSlug": "acme"
}
Reddit only:
{
"projectSlug": "acme",
"domain": "reddit"
}
Output
{
"project": {
"name": "Acme",
"slug": "acme"
},
"sources": [
{
"domain": "www.reddit.com",
"mentionCount": 12,
"prompts": ["best crm for startups", "acme vs hubspot"],
"title": "What CRM are you actually using in 2026?",
"url": "https://www.reddit.com/r/startups/comments/abc123/what_crm/"
},
{
"domain": "www.g2.com",
"mentionCount": 5,
"prompts": ["best crm for startups"],
"title": "Best CRM Software",
"url": "https://www.g2.com/categories/crm"
}
]
}