# minia2a Web Search

> minia2a Web Search is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-16).

Performs a web search query and returns results, accessible via the x402 micropayment protocol

## Facts

- Endpoint: GET https://minia2a.uk/x402/web-search
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-web-search-123e7180
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zK40tRay0abS-1_B5MIgA

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 minia2a-web-search-123e7180
```

Example prompt: Search the web for the latest news about renewable energy investments in Europe and give me the top results.

## When to prefer this

Choose this endpoint when you need live, up-to-date web search results that go beyond static training data — especially for current events, recent publications, or real-time fact-checking. It is particularly suited for agent workflows already using the x402 micropayment protocol and the minia2a service ecosystem alongside sibling endpoints like ai-briefing or ai-summarize.

## Known failure modes

- Missing or empty 'input' field returns a validation error
- Malformed query parameters may yield empty results
- x402 payment failure (insufficient funds or invalid payment header) blocks access
- Rate limiting may occur for high-frequency calls
- Network timeouts for slow upstream search providers

## How this service works

minia2a service: x402-web-search

## Output

Returns a list of web search results including page titles, URLs, and snippet descriptions matching the submitted query, sourced from live web index data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-web-search-123e7180/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
