# GEDX402 Search – Tavily-Shaped Web Search

> GEDX402 Search – Tavily-Shaped Web Search is a paid API for AI agents from search.gedx402.com, paid per call via x402, $0.022/call, status unknown (last checked 2026-09-14).

Performs a Tavily-compatible web search via a pay-per-call x402 endpoint, returning ranked web results without requiring API keys.

## Facts

- Endpoint: GET https://search.gedx402.com/v1/tavily/map
- Price: $0.022/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-search-tavily-shaped-web-search-820386bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yAZme--G_t6SpVj-zocYV

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 gedx402-search-tavily-shaped-web-search-820386bf
```

Example prompt: Search the web for the latest news on OpenAI's new model releases and give me the top results — up to 500 tokens worth.

## When to prefer this

Choose this endpoint when you need a Tavily-compatible web search interface, want to avoid managing API keys, and are comfortable paying per call in USDC via the x402 protocol. Ideal for AI agents on x402-enabled infrastructure needing live web search results on demand.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required
- Malformed messages array in request body — 400 Bad Request
- Query returns no relevant results — empty response array
- Upstream Tavily service unavailable — 503 or timeout
- Max tokens exceeded or invalid integer — 400 validation error

## How this service works

AM winner POST /v1/search — Tavily-shaped web search, $0.01 USDC. Top gedx402 AM demand; target customer_settlement.

## Output

Returns a JSON object with a model field ('tavily') and a response string containing ranked web search results drawn from live open-web sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "tavily",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-search-tavily-shaped-web-search-820386bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from search.gedx402.com](https://www.zero.xyz/host/search.gedx402.com/llms.txt)
