# Saymon RU Data API — Runet Search Batch x10

> Saymon RU Data API — Runet Search Batch x10 is a paid API for AI agents from payforapi.com, paid per call via x402, $0.18/call, status unknown (last checked 2026-09-13).

Executes up to 10 Russian-language web search queries in a single payment via Yandex, returning titles, URLs, and snippets for each query

## Facts

- Endpoint: GET https://payforapi.com/v1/ru-search/x10
- Price: $0.18/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/saymon-ru-data-api-runet-search-batch-x10-b4489c55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jSdMo4w_yj3zKqUyS4Mwb

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-runet-search-batch-x10-b4489c55
```

Example prompt: Search the Russian web for up to 10 queries at once — 'доставка цветов москва', 'купить iPhone 15 недорого', and 'новости технологий 2024' — and give me the top results including URLs and snippets for each.

## When to prefer this

Choose this endpoint when you need to search Russian-language web content via Yandex across multiple queries in a single cost-efficient API call. It is ideal for Runet-specific research, Russian market intelligence, or any task requiring several Russian-language searches at once with a 10% discount over single-query pricing. Prefer this over single-query endpoints when you have 2–10 queries to run simultaneously.

## Known failure modes

- More than 10 queries submitted — API rejects with validation error
- Invalid query array format — returns schema validation error
- Search provider unavailable — query marked as error with error_count incremented
- Limit parameter out of range (must be 1-10) — returns validation error
- Empty queries array — API may reject or return zero results

## How this service works

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

## Output

A JSON object containing the total count of completed queries, per-query results (each with URL, title, and snippet arrays), the search provider (Yandex), remaining grant credits, and an error count for any failed queries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 10,
   "minimum": 1
  },
  "queries": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Search queries, max 10"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "results": [
   {
    "count": 5,
    "query": "доставка цветов москва",
    "results": [
     {
      "url": "https://example.com/1",
      "title": "Заголовок",
      "snippet": "..."
     }
    ],
    "provider": "yandex"
   }
  ],
  "completed": 3,
  "grant_left": 8183,
  "error_count": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/saymon-ru-data-api-runet-search-batch-x10-b4489c55/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)
