Find AI Citation Gaps
Workflow contract for finding queries where AI cites other sources instead of your brand.
Overview
Workflow endpoints run their primitives in parallel and return each primitive's full output, labeled per source. Pricing is calculated from the primitives that ran successfully plus the selected model rates — failed or skipped steps are not charged.
Reference
POST
/v1/workflows/ai-citation-gaps$0.64 · flat per call
Parameters
queryrequired | string | AI-search query to inspect for citation gaps. |
brandrequired | string | Brand or domain that should earn citations. |
urloptional | string | Optional exact URL to check for citations. |
competitorsoptional | string[] | Competitor brands/domains to compare against. |
modelsoptional | array of enum (chatgpt | claude | perplexity | gemini | google_ai_overview) | Optional model subset. Omit to query all five AI surfaces (chatgpt, claude, perplexity, gemini, google_ai_overview). Pass ["perplexity"] or ["perplexity","claude"] when the user asks for specific surfaces or wants to reduce cost. |
Request
curl https://api.cite42.dev/v1/workflows/ai-citation-gaps \
-X POST \
-H "Authorization: Bearer $CITE42_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "query": "best tools for AI search visibility", "brand": "Cite42", "competitors": ["Peec AI", "Profound"] }'Response
{
"status": "workflow_result",
"workflow": "find_ai_citation_gaps",
"summary": "Find where AI models answer a query but do not cite the brand, URL, or strongest owned source.",
"results": [
{ "endpoint": "/v1/search", "tool": "cite42_search", "ok": true, "why": "...", "data": { "query": "...", "results": [ "…per-model answers with citations…" ] } },
{ "endpoint": "/v1/keywords", "tool": "cite42_keywords", "ok": true, "why": "...", "data": { "keyword": "...", "volume": 4400, "cpc": 6.2, "ideas": [ "…" ] } },
{ "endpoint": "/v1/reddit/trends", "tool": "cite42_reddit_trends", "ok": true, "why": "...", "data": { "risingThreads": [ "…" ], "painPoints": [ "…" ], "repeatedQuestions": [ "…" ] } }
]
}