# AmanChain Live Web Search

> AmanChain Live Web Search is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.009331/call, status down (last checked 2026-09-15).

Performs a live web search and returns titles, URLs, and snippets for the given query, paid per call via x402 in USDC on Base.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-web-search
- Price: $0.009331/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-live-web-search-fa6fcf1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uqIwkKxzSKEGu_m2JebQN

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 amanchain-live-web-search-fa6fcf1f -d '<json body>'
```

Example prompt: Search the web for the latest news about OpenAI's new model releases and give me the top results with titles and links.

## When to prefer this

Choose this endpoint when you need live, real-time web search results (titles, URLs, snippets) without requiring an account or API key — ideal for agents that need on-demand web lookup paid per call in USDC via x402, especially when integrating with AmanChain-based workflows or avoiding key management overhead.

## Known failure modes

- Empty query string returns error or empty results
- Network or upstream search provider outage causes failed response
- Malformed JSON body with missing serviceId or request fields returns 400-level error
- x402 payment failure (insufficient USDC balance) blocks the request
- Query returns no matching results for highly obscure or malformed terms

## How this service works

Live Web Search: live web search with titles, URLs and snippets Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-web-search","request":"<input>"}. No account, no API key.

## Output

A list of web search results, each containing a page title, URL, and a short snippet/description of the page content, sourced from live web index at the time of the call.

## 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": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-web-search\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-live-web-search-fa6fcf1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
