LogoEurekaNav

Developers

Build on EurekaNav's structured AI tools data. REST API, A2A protocol, and machine-readable endpoints for agents and integrations.

A2A Protocol (Agent-to-Agent)

EurekaNav implements Google's A2A protocol for agent interoperability. Any AI agent that supports A2A can discover EurekaNav's capabilities and query tool data via JSON-RPC.

Agent Card

Live

RFC 8615 discovery endpoint. Declares agent identity, capabilities, and available skills.

GET/.well-known/agent-card.json
curl https://www.eurekanav.com/.well-known/agent-card.json

tool_get_facts

Live

Get structured facts for a single AI tool — pricing, features, use cases, AEO scores, and alternatives.

POST/a2a
curl -X POST https://www.eurekanav.com/a2a \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tool_get_facts","params":{"slug":"chatgpt"}}'

tool_search

Live

Search the AI tools directory by keyword, category, or AEO visibility level.

POST/a2a
curl -X POST https://www.eurekanav.com/a2a \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tool_search","params":{"q":"writing","limit":5}}'

tool_compare

Live

Compare 2-5 AI tools side-by-side on pricing, features, AEO scores, and target audience.

POST/a2a
curl -X POST https://www.eurekanav.com/a2a \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":3,"method":"tool_compare","params":{"slugs":["chatgpt","claude"]}}'

aeo_audit_preview

Coming Soon

Lightweight AEO audit for any domain. Returns a gap analysis showing what's missing for AI engine citations.

POST/a2a

REST API

Traditional REST endpoints for tool data. Anonymous access with rate limiting (30 req/min). Pass an API key via X-API-Key header for higher limits (120 req/min).

List Tools

Live

Paginated list of all AI tools. Filter by category, visibility, or keyword search.

GET/api/v1/tools
curl "https://www.eurekanav.com/api/v1/tools?category=AI%20Assistant&limit=10"

Tool Detail

Live

Full detail for a single tool including features, FAQ, pricing, and comparison data.

GET/api/v1/tools/:slug
curl https://www.eurekanav.com/api/v1/tools/chatgpt

AEO Scores

Live

AI visibility scores across 6 engines. Filter by slug, visibility level, or score range.

GET/api/v1/aeo-scores
curl "https://www.eurekanav.com/api/v1/aeo-scores?visibility=high&sort=score_desc"

Machine-Readable Endpoints

Structured data for AI engines, crawlers, and automated systems.

llms.txt

Live

Machine-readable context file following the llms.txt spec. Helps LLMs understand EurekaNav's content and capabilities.

GET/llms.txt
curl https://www.eurekanav.com/llms.txt

Sitemap

Live

XML sitemap for search engine crawlers.

GET/sitemap.xml

robots.txt

Live

Crawler directives with AI bot-friendly rules.

GET/robots.txt

Authentication

All endpoints support anonymous access with rate limiting. For higher rate limits, include an API key in your requests:

# Via header (recommended)
curl -H "X-EurekaNav-Key: your_key_here" https://www.eurekanav.com/api/v1/tools

# Via Authorization header
curl -H "Authorization: Bearer eak_your_key_here" https://www.eurekanav.com/api/v1/tools

# Via query parameter
curl "https://www.eurekanav.com/api/v1/tools?api_key=your_key_here"

Contact support@eurekanav.com for API key access.

Monitor Your AI Visibility — Automatically

AI Sentinel tracks how 6 AI engines describe your product every week. Get score changes, citation drift, and actionable fixes delivered to your inbox.

Further Reading