# Exa AI Web Search via aidress.ai

> Exa AI Web Search via aidress.ai is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Performs neural, keyword, or AI-powered web search using Exa's /search API, returning ranked results with optional text, highlights, and summaries

## Facts

- Endpoint: POST https://api.aidress.ai/pay/agent_exa_ai
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/exa-ai-web-search-via-aidress-ai-964df19a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y-LHdko7RYYaGBw306DId

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability exa-ai-web-search-via-aidress-ai-964df19a -d '<json body>'
```

Example prompt: Search the web for the latest research on CRISPR gene editing — use neural search, return 5 results with summaries and highlights so I can see what each page is about.

## When to prefer this

Choose this endpoint when you need AI-powered or neural web search with rich content extraction (text, highlights, summaries) in a single call, especially in agent pipelines that use x402 micropayment rails. Prefer over generic search APIs when semantic relevance ranking or deep search modes (deep, deep-reasoning) are needed.

## Known failure modes

- Query string missing — returns validation error
- numResults exceeds 10 — capped or rejected by x402 tier
- Invalid search type string — defaults or errors
- Payment not fulfilled — x402 payment required response
- Exa upstream timeout — propagated as error
- Empty results — no matching pages found for obscure query

## How this service works

Exa /search endpoint

## Output

A list of up to 10 ranked web search results, each potentially including the page URL, title, and optionally full text content, highlighted excerpts, and an AI-generated summary, depending on which content fields were requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "Search type: auto, keyword, neural, deep-lite, deep, deep-reasoning"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  },
  "contents": {
   "type": "object",
   "description": "Content fields to include: text, highlights, summary"
  },
  "numResults": {
   "type": "number",
   "description": "Number of results to return (max 10 for x402)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/exa-ai-web-search-via-aidress-ai-964df19a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
