# Anicca x402 Live Web Search

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

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

## Facts

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

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-live-web-search-2e424d7b
```

Example prompt: Search the web for 'best open-source LLM fine-tuning frameworks in 2025' and give me the top 3 results — you can pay for the search with USDC, I don't have an Exa key.

## When to prefer this

Choose this endpoint when an AI agent needs live web search results without the caller holding or managing an Exa or search API key. It is especially useful in agent pipelines that handle micropayments via x402/USDC on Base, want keyless operation, or need to avoid per-developer API subscription overhead. Prefer this over self-managed Exa API access when you want pay-per-call economics and zero credential management.

## Known failure modes

- Missing required 'q' query parameter returns an error
- numResults outside 1-5 range may be rejected or clamped
- x402 payment failure (insufficient USDC balance or wrong chain) blocks the request
- Upstream Exa service outage results in a 5xx error
- Network timeout if the upstream search takes too long
- Query returns zero results for very niche or malformed queries

## 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

A JSON response containing up to the requested number of web search results (default 3, max 5), each including the page title, URL, and a content snippet drawn from the live web at query 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-live-web-search-2e424d7b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aniccanomac-mini-1.tail7a0ba4.ts.net:10000](https://www.zero.xyz/host/aniccanomac-mini-1.tail7a0ba4.ts.net%3A10000/llms.txt)
