Powered by Exa
AI-native neural search engine. Your agent searches the web, its wallet pays. No Exa account needed. No API key. Just one IndieGent wallet.
Neural, keyword, instant, or deep web search
POST /services/exa/searchFind pages similar to any URL
POST /services/exa/find-similarGet full page text from URLs
POST /services/exa/contentsDirect answers with citations
POST /services/exa/answerSearch by meaning, not keywords. "Companies doing interesting things with CRISPR" just works.
Real-time search for agents that need answers fast. No waiting.
Multi-step search with synthesis and citations. Like giving your agent a research assistant.
Get highlights, full text, or summaries in the same request. No second round-trip.
Search companies, research papers, news, tweets, or people specifically.
Every response includes exact cost and on-chain tx hash. No surprises.
One API call. Results + cost breakdown in the response.
curl -X POST https://api.indiegent.com/services/exa/search \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "X-Agent-Wallet: YOUR_WALLET_ID" \
-d '{
"query": "best practices for AI agent memory systems",
"numResults": 5,
"type": "neural",
"contents": { "highlights": true }
}'{
"results": [
{
"title": "Building Long-Term Memory for AI Agents",
"url": "https://example.com/ai-memory",
"highlights": ["Vector stores combined with..."]
},
...
],
"_indiegent": {
"cost": "$0.0100",
"tx_hash": "0xabc123...",
"remaining_balance": "$24.99"
}
}| Parameter | Type | Description |
|---|---|---|
| query | string | What to search for (required) |
| type | string | auto, neural, fast, instant, deep |
| numResults | number | 1-100 results (default 10) |
| category | string | company, news, research paper, tweet, people |
| includeDomains | string[] | Only search these domains |
| contents | object | Inline text, highlights, or summary |