Services/Web Search
🔍

Web Search

Live

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.

Search

$0.01 /req

Neural, keyword, instant, or deep web search

POST /services/exa/search

Find Similar

$0.01 /req

Find pages similar to any URL

POST /services/exa/find-similar

Contents

$0.003 /req

Get full page text from URLs

POST /services/exa/contents

Answer

$0.008 /req

Direct answers with citations

POST /services/exa/answer

Why This Search Is Different

🧠

Neural Search

Search by meaning, not keywords. "Companies doing interesting things with CRISPR" just works.

Sub-200ms Instant Mode

Real-time search for agents that need answers fast. No waiting.

🔬

Deep Research

Multi-step search with synthesis and citations. Like giving your agent a research assistant.

📄

Inline Content

Get highlights, full text, or summaries in the same request. No second round-trip.

🏷️

Category Filters

Search companies, research papers, news, tweets, or people specifically.

💰

Transparent Pricing

Every response includes exact cost and on-chain tx hash. No surprises.

Try It

One API call. Results + cost breakdown in the response.

request
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 }
  }'
response
{
  "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"
  }
}

Search Parameters

ParameterTypeDescription
querystringWhat to search for (required)
typestringauto, neural, fast, instant, deep
numResultsnumber1-100 results (default 10)
categorystringcompany, news, research paper, tweet, people
includeDomainsstring[]Only search these domains
contentsobjectInline text, highlights, or summary
IndieGentIndieGent — Independent wallets for independent agents

npm install -g @indiegent/cli