# Losbeto Web Search

> Losbeto Web Search is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Performs a web search query and returns results, accessible via USDC micropayment on Solana or Base.

## Facts

- Endpoint: GET https://api.losbeto.xyz/web-search
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-web-search-88d3da0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7g0zr7nps9qgiGkx7DGev

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 losbeto-web-search-88d3da0d
```

Example prompt: Search the web for the latest news about Bitcoin ETF approvals and give me a summary of what you find.

## When to prefer this

Choose this endpoint when an AI agent needs low-cost, pay-per-query web search capability billed in USDC micropayments (Solana or Base), particularly in autonomous agent pipelines where traditional API key management is undesirable. Useful when integrating search into crypto-native or x402-compatible agent workflows.

## Known failure modes

- Missing or malformed query parameter returns an error or empty result
- Payment not included or insufficient USDC causes a 402 Payment Required response
- Invalid input schema structure returns a parsing or validation error
- Network timeout or upstream search provider unavailability returns a 5xx error
- Query too vague or empty may return empty results set

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

A JSON object containing web search results matching the submitted query, likely including titles, URLs, snippets, or structured content from indexed web pages.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "properties": {
      "q": {
       "description": "Free-text search query",
       "type": "string"
      }
     },
     "type": "object"
    }
   },
   "type": "object"
  },
  "output": {
   "properties": {
    "example": {
     "description": "What is the web saying right now? Live search results condensed into clean text for agent reasoning — answers beyond any model's training cutoff. Google-grade when the node's search provider is configured.",
     "type": "object"
    }
   },
   "type": "object"
  }
 },
 "required": [
  "input"
 ],
 "type": "object"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

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