# Saymon RU Data API – Global Web Search (Tavily via x402)

> Saymon RU Data API – Global Web Search (Tavily via x402) is a paid API for AI agents from payforapi.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Performs global web search for AI agents using Tavily aggregation, returning ranked results with URLs, titles, and snippets

## Facts

- Endpoint: GET https://payforapi.com/v1/web-search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/saymon-ru-data-api-global-web-search-tavily-via-x402-b746ad4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y5RukYm53OBsAJ5xSpJSD

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 saymon-ru-data-api-global-web-search-tavily-via-x402-b746ad4d
```

Example prompt: Search the web for 'best open-source LLMs in 2025' and return the top 5 results with their titles, URLs, and snippets.

## When to prefer this

Choose this endpoint when an AI agent needs real-time, globally-indexed web search results with structured output (URL + title + snippet) and per-call pay-as-you-go pricing via x402. Preferred over static knowledge bases when freshness matters, and over browser automation when lightweight structured results are sufficient. Useful in pipelines that need to augment LLM responses with current web data.

## Known failure modes

- Missing required 'query' field returns validation error
- limit outside 1–10 range rejected by schema
- Network or Tavily upstream timeout returns 5xx
- Payment not accepted / x402 handshake failure blocks the call
- Query too vague may return low-relevance snippets

## How this service works

PAYFORAPI.com — окно между ру-рынком и глобальным x402. Глобальный провайдер: твой эндпоинт платят агенты из СНГ. Ру-провайдер: твой сервис — на мировой витрине. Локализация, продвижение, платежи USDC — наша работа.

## Output

A JSON object containing the original query, total number of results, and an array of up to 10 result objects each with a URL, title, and text snippet from the matched web page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 10,
   "minimum": 1
  },
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "bitcoin price today",
  "total": 5,
  "results": [
   {
    "url": "https://example.com/btc",
    "title": "Bitcoin Today",
    "snippet": "Bitcoin price..."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/saymon-ru-data-api-global-web-search-tavily-via-x402-b746ad4d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payforapi.com](https://www.zero.xyz/host/payforapi.com/llms.txt)
