10 endpoints for auditing how AI engines fetch, parse, and cite your content, plus llm-ready chunking.
For AI-discovery teams, agencies, and content engineers measuring AEO posture across pages and competitors.
Each endpoint is independently callable. Bundle membership is for discovery only — you do not need to opt in.
| Method | Path | Credits | Summary |
|---|---|---|---|
| POST | /v1/aeo/page-audit | 3 | Orchestrator over 8-9 component AEO probes for a single URL. |
| POST | /v1/aeo/competitor-diff | 3 | Diff a domain's AEO posture against named competitors. |
| POST | /v1/aeo/citation-readiness | 1 | Likelihood that AI engines cite this page. |
| POST | /v1/aeo/schema-coverage | 1 | Coverage of JSON-LD schema types vs intent. |
| POST | /v1/aeo/llm-fetch-simulator | 1 | Simulate fetch from GPTBot, ClaudeBot, and PerplexityBot. |
| POST | /v1/aeo/llms-txt-audit | 1 | Audit an existing llms.txt for completeness and link rot. |
| POST | /v1/aeo/ai-bot-allowlist | 1 | Report robots.txt posture for 14 named AI crawlers. |
| POST | /v1/aeo/freshness-signal | 1 | lastmod and visible dateline coverage. |
| POST | /v1/aeo/heading-hierarchy-score | 1 | h1..h6 nesting quality score. |
| POST | /v1/aeo/snippet-format-detect | 1 | Detect list, table, definition, and FAQ snippet formats. |
| POST | /v1/scrape/llm-ready | 1 | Fetch and token-chunk a page for downstream AEO scoring or RAG ingest. |
Pick a language. Click to expand the snippet.
curl -X POST https://api.ollagraph.com/v1/aeo/page-audit \
-H "Authorization: Bearer $OLLAGRAPH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/pricing"}'
import httpx, os
r = httpx.post(
"https://api.ollagraph.com/v1/aeo/page-audit",
headers={"Authorization": f"Bearer {os.environ['OLLAGRAPH_API_KEY']}"},
json={"url": "https://example.com/pricing"},
timeout=60.0,
)
print(r.json())
const res = await fetch("https://api.ollagraph.com/v1/aeo/page-audit", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.OLLAGRAPH_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ url: "https://example.com/pricing" }),
});
console.log(await res.json());
One call, 3 credits. The orchestrator runs ~9 probes server-side but you only pay once and only refund once on error.
GPTBot, ChatGPT-User, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, and Amazonbot, with each user-agent string verbatim from their published docs.
No. AEO endpoints fetch as the named bot would, which means anonymously. Gate-removed preview URLs are the workaround.
1,000 credits on signup. No card. Every endpoint in this bundle is live from minute one.