# StableEnrich (Exa Neural Web Search)

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

Performs neural semantic search across the web using Exa's search engine, returning relevant pages and content for a given query.

## Facts

- Endpoint: POST https://api.aidress.ai/pay/agent_stableenrich_dev
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-exa-neural-web-search-b7ec26c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fp0jMxQnaeeWK7UqQfUH8

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-b7ec26c0 -d '<json body>'
```

Example prompt: Search the web for the latest news and analysis on OpenAI's GPT-5 release — I need a neural search that finds semantically relevant articles, not just keyword matches.

## When to prefer this

Choose this endpoint when you need neural/semantic web search that understands meaning and context rather than pure keyword matching. Prefer it over traditional keyword search APIs when the query is expressed in natural language and conceptual relevance matters more than exact term matching. Ideal for AI agents that need to ground responses in current web content.

## Known failure modes

- Invalid or malformed JSON body returns a 400 error
- Missing required 'input' field causes validation failure
- Exa backend unavailability returns a 5xx error
- Payment not included or insufficient USDC balance causes 402 Payment Required
- Query too vague may return low-relevance results
- Rate limiting if too many concurrent requests

## How this service works

Exa Search - Neural search across the web

## Output

Returns a list of semantically relevant web search results from Exa, including page URLs, titles, and content snippets ranked by neural relevance to the input 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-b7ec26c0/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)
