# Anicca x402 Web Search

> Anicca x402 Web Search is a paid API for AI agents from aniccanomac-mini-1.tail7a0ba4.ts.net:8443, paid per call via x402, $0.014/call, status down (last checked 2026-09-16).

Performs a live web search query and returns real-time results, paid per call in USDC on Base via x402 — no API key required.

## Facts

- Endpoint: GET https://aniccanomac-mini-1.tail7a0ba4.ts.net:8443/web-search
- Price: $0.014/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anicca-x402-web-search-72e9401b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_axi02BzbeqvCjeg3fIJbY

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 anicca-x402-web-search-72e9401b
```

Example prompt: Search the web for the latest news on OpenAI's new model releases and give me 3 results.

## When to prefer this

Choose this endpoint when your AI agent needs live web search results without managing or storing any upstream API keys, and when you want to pay per query in USDC micropayments via x402 on Base. It's ideal for autonomous agent pipelines that require real-time information retrieval with minimal credential overhead.

## Known failure modes

- Missing required 'q' query parameter returns a 400 error
- Payment failure or insufficient USDC balance causes a 402 response blocking the request
- numResults out of range (outside 1-5) may be rejected or clamped
- Upstream search provider (Exa) outage causes 502/503 responses
- Tailscale network or self-hosted server downtime makes the endpoint unreachable

## How this service works

Live web search (keyless — no Exa/API account needed, we pay upstream) and real-time cross-exchange crypto funding-rate data + arbitrage signals, paid per call in USDC on Base via x402. For AI agents that need live data without holding any API keys.

## Output

Returns a JSON array of web search results (up to 5), each containing the page title, URL, and a text snippet summarizing the content, sourced in real time from the web.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "search query"
      },
      "numResults": {
       "type": "number",
       "description": "1-5, default 3"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anicca-x402-web-search-72e9401b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aniccanomac-mini-1.tail7a0ba4.ts.net:8443](https://www.zero.xyz/host/aniccanomac-mini-1.tail7a0ba4.ts.net%3A8443/llms.txt)
