# StableEnrich: Exa Neural Web Search

> StableEnrich: Exa Neural Web Search is a paid API for AI agents from enrichx402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Performs AI-powered neural search across the web using Exa's semantic search engine, returning relevant web results for a given query

## Facts

- Endpoint: POST https://enrichx402.com/api/exa/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-exa-neural-web-search-e5a15309
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cVgeYgjVxcyGZl888o_tq

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 stableenrich-exa-neural-web-search-e5a15309 -d '<json body>'
```

Example prompt: Search the web for the latest research on large language model alignment — I need the most relevant pages and summaries you can find.

## When to prefer this

Choose this endpoint when you need semantic, AI-powered web search rather than keyword-based search — ideal for nuanced queries where meaning matters more than exact keyword matches. Prefer this over traditional search APIs when you want neural ranking of results. Use when building agents that need to look up current web information and want Exa's embedding-based relevance rather than PageRank-style results. Accessible via x402 micropayment at $0.01 per call, making it cost-effective for per-query agent workflows.

## Known failure modes

- Invalid or malformed request body returns a 400 error
- Missing required 'input' wrapper object causes validation failure
- Payment not included or insufficient USDC causes 402 Payment Required response
- Exa upstream service unavailability results in 503 or timeout
- Empty or too-short query string may return zero results

## How this service works

Exa Search - Neural search across the web

## Output

A list of web search results from Exa's neural search engine, typically including page titles, URLs, relevance scores, and content snippets semantically matched to the query

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableenrich-exa-neural-web-search-e5a15309/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from enrichx402.com](https://www.zero.xyz/host/enrichx402.com/llms.txt)
