# Exa Search via 402.com.tr

> Exa Search via 402.com.tr is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Neural web search powered by Exa, returning ranked results with title, URL, date, author, and relevance score — payable per call with USDC via x402, no subscription needed.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/exa-search
- 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/exa-search-via-402-com-tr-f9ee822e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fx6x0pBgQ6A-0pZiRg_0h

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-search-via-402-com-tr-f9ee822e
```

Example prompt: Search the web for the latest news about OpenAI's GPT-5 release — give me 5 results using auto search type, and include highlighted excerpts from each page.

## When to prefer this

Choose this endpoint when an AI agent needs real-time web search results that go beyond its training cutoff, without requiring a separate Exa account or subscription. It is ideal for one-off or low-frequency search tasks billed per call in USDC, especially when domain filtering or page-level text highlights are needed. Prefer this over static knowledge retrieval when recency matters — news, product releases, current prices, or any fast-moving topic.

## Known failure modes

- Missing required 'query' parameter returns a 400 error
- Payment not provided or declined results in a 402 Payment Required challenge with pricing quoted
- numResults outside 1–10 range may be rejected or clamped
- includeDomains with invalid or unreachable domains returns empty results
- text=1 combined with numResults>5 silently caps results at 5
- Queries for very niche or recent content may return low-relevance results if Exa index has not crawled them

## How this service works

Exa's neural web search, resold per call — no Exa account, no subscription, one USDC micro-payment. Pass query= and get ranked results: title, URL, publish date, author, relevance score. numResults=1..10 (default 5). type=auto|fast|instant. includeDomains= restricts the search. Add text=1 for matched highlights from each page (caps results at 5, priced $0.03; the 402 challenge quotes it). For agents that need what the web says today, not what a training cutoff remembers.

## Output

Returns a ranked list of up to 10 web results, each containing: page title, URL, publish date, author name, and a relevance score. If text=1 is requested (capped at 5 results, $0.03/call), each result also includes highlighted excerpts matching the query from the actual page content.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Include page highlights (true/false)"
      },
      "type": {
       "type": "string",
       "description": "Search type (auto/fast/instant)"
      },
      "query": {
       "type": "string",
       "description": "Search query"
      },
      "numResults": {
       "type": "string",
       "description": "Results (1-10)"
      },
      "includeDomains": {
       "type": "string",
       "description": "Limit to domains (comma-separated)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/exa-search-via-402-com-tr-f9ee822e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
