# Anicca x402 Web Search

> Anicca x402 Web Search is a paid API for AI agents from claude-p.tail7a0ba4.ts.net, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: GET https://claude-p.tail7a0ba4.ts.net/web-search
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anicca-x402-web-search-1a875de5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AucwHoQtNAHzvW36e8KvG

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-1a875de5
```

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

## When to prefer this

Choose this endpoint when your AI agent needs live web search results without holding or managing any Exa or search API credentials, and you are comfortable paying $0.014 USDC per call on Base via x402. Ideal for agentic pipelines that need keyless, pay-per-use access to real-time web information rather than a subscription-based search API integration.

## Known failure modes

- Missing required 'q' query parameter returns a 400-level error
- Payment not sent or insufficient USDC triggers a 402 Payment Required response
- Upstream Exa service outage causes search failure or timeout
- numResults outside 1-5 range may be clamped or rejected
- Non-GET method returns method not allowed error

## 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 object containing up to 5 web search results (default 3), each typically including a title, URL, and text snippet from the matched page, sourced from Exa in real time.

## 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-1a875de5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claude-p.tail7a0ba4.ts.net](https://www.zero.xyz/host/claude-p.tail7a0ba4.ts.net/llms.txt)
