# GEDX402 Search Lite

> GEDX402 Search Lite is a paid API for AI agents from search.gedx402.com, paid per call via x402, $0.042/call, status unknown (last checked 2026-09-15).

Performs a lightweight open-web search query and returns ranked SERP results with titles, URLs, and snippets, paid per query via USDC.

## Facts

- Endpoint: GET https://search.gedx402.com/v1/search/outcome/search-lite
- Price: $0.042/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-search-lite-6e4b97ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ICJ5rPAONXS6MIbXI75pX

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-lite-6e4b97ad
```

Example prompt: Search the open web for 'GEDX402 x402 API pricing' and give me the top 5 results including titles and snippets.

## When to prefer this

Choose this endpoint when an AI agent needs lightweight, pay-per-use open-web search without managing API keys, and the use case fits a Tavily-parity SERP result set (ranked URLs with titles and snippets). It is ideal for single-query lookups billed in USDC via x402 micro-payments, especially in crypto-native or keyless agent workflows.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required returned
- Query parameter missing — 400 Bad Request
- max_results out of range (not 1-10) — validation error
- No results found for query — empty results array returned
- Network or upstream search provider outage — 503 or timeout

## How this service works

Tavily search-lite — one x402 POST proxies Tavily Search API. $0.042 USDC per request. Entry SKU. Agent search: search lite, serp, tavily, web search, semantic search.

## Output

A JSON object containing the query string, a count of results, and an array of ranked search results each with a URL, rank integer, page title, and a short text snippet from the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string"
  },
  "max_results": {
   "type": "integer"
  },
  "search_depth": {
   "enum": [
    "basic",
    "advanced"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-search-lite-6e4b97ad/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)
