Neural Web Search for AI Agents
Exa is a search engine built for AI: neural embeddings find semantically relevant results, not just keyword matches. Access search, findSimilar, contents, and AI-powered answers via x402 — no API key required.
Capabilities
What AI Agents Use It For
Companies like HubSpot, Mercor, 11x, and KKR use Exa to automate research workflows that used to require human analysts. On BlockRun, any AI agent can do the same — no account, no subscription, $0.012 per search.
Lead Sourcing
$0.036 per leadFind decision-makers at target companies. Search for "Series D security CTOs in SF", extract LinkedIn profiles, synthesize contact info — all in one agent loop.
searchcategory: "linkedin profile"$0.012contentsextract profile data from 5 URLs$0.012answersynthesize contact summary$0.012Competitive Intelligence
$0.036 per reportMap out a competitor's ecosystem. Find similar companies, read their pages, get a synthesized overview — continuously, not just once.
find-similarcompetitor URL → similar companies$0.012contentsread 5 competitor pages$0.012answersummarize competitive landscape$0.012Due Diligence
$0.024 per companyResearch any company, person, or technology before a meeting, investment, or partnership. Grounded in live web data, not LLM memory.
searchcompany name + funding + team$0.012answergrounded summary with citations$0.012Real-Time Research
$0.012 per questionAnswer questions about things that happened after the LLM's training cutoff. Latest protocol updates, recent funding rounds, breaking news.
answerlive web-grounded answer with sources$0.012Pricing
Per-request pricing. No subscriptions, no monthly minimums.
API Reference
Base (USDC): https://blockrun.ai/api/v1/exa/
Solana (USDC): https://sol.blockrun.ai/api/v1/exa/
All endpoints accept POST with a JSON body matching the Exa API spec. Send without a payment header to get a 402 with the exact price.
| Endpoint | Method | Price | Description |
|---|---|---|---|
/api/v1/exa/search | POST | $0.010 | Neural and keyword web search. Optional category filter: company, research paper, news, pdf, github, tweet, personal site, linkedin profile, financial report. |
/api/v1/exa/find-similar | POST | $0.010 | Find pages semantically similar to a given URL. |
/api/v1/exa/contents | POST | $0.002 | Extract full text content from specific URLs. Priced at $0.002/URL — total = urls.length × $0.002. |
/api/v1/exa/answer | POST | $0.010 | Get an AI-generated answer to a question grounded in live web search results. |
Quick Start
Neural web search in a single request:
# Base (USDC on Base)
curl -X POST https://blockrun.ai/api/v1/exa/search \
-H "Content-Type: application/json" \
-d '{"query": "latest AI agent frameworks"}'
# Returns: 402 with price ($0.0120) and Base USDC payment instructions
# Solana (USDC on Solana)
curl -X POST https://sol.blockrun.ai/api/v1/exa/search \
-H "Content-Type: application/json" \
-d '{"query": "latest AI agent frameworks"}'
# Returns: 402 with price and Solana USDC payment instructions
# Paid request (add x402 payment header to either endpoint)
curl -X POST https://blockrun.ai/api/v1/exa/search \
-H "Content-Type: application/json" \
-H "x-payment: <x402_payment_token>" \
-d '{"query": "latest AI agent frameworks", "numResults": 10}'
# LinkedIn profile search
curl -X POST https://blockrun.ai/api/v1/exa/search \
-H "Content-Type: application/json" \
-H "x-payment: <x402_payment_token>" \
-d '{"query": "hedge fund portfolio manager New York", "category": "linkedin profile", "numResults": 10}'Use the BlockRun Python SDK or TypeScript SDK to handle x402 payment automatically.
Start searching with Exa
Fund your wallet with USDC on Base or Solana and start querying the web immediately. No registration, no API keys required.