# Losbeto Web Search

> Losbeto Web Search is a paid API for AI agents from markets.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://markets.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-4711c8bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zpE-3Jhwvxny2u30E-QRR

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-4711c8bc
```

Example prompt: Search the web for the latest news about Solana DeFi protocols and return the top results.

## When to prefer this

Choose this endpoint when your AI agent needs live web search results and can pay micropayments in USDC via the x402 protocol on Solana or Base. Useful for agent workflows that need real-time web data without API key setup, paying only $0.008 per call.

## Known failure modes

- Missing or malformed 'properties' query parameter returns an error or empty result
- Insufficient USDC payment (below $0.008) results in HTTP 402 Payment Required
- Network timeout if upstream web search provider is slow
- Invalid JSON response if the search yields no results
- Payment on wrong chain (non-Solana/Base) may be rejected

## How this service works

Losbeto: 67 endpoints x402 monetizados. Solana + Base. USDC micropayments para AI agents. Preços a partir de $0.003.

## Output

A JSON object containing web search results relevant to the submitted query, including titles, URLs, and snippets from matching web pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Free-text search query"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "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."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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