# Saymon RU Data API – Cyrillic Web Search

> Saymon RU Data API – Cyrillic Web Search 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 Russian-language (Cyrillic) web searches and returns ranked results with titles, URLs, and snippets for AI agents

## Facts

- Endpoint: GET https://payforapi.com/v1/ru-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-cyrillic-web-search-5e2d81cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j7-v5Z6_EFazatcHgeswZ

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-cyrillic-web-search-5e2d81cd
```

Example prompt: Search the Russian web for 'новости искусственного интеллекта' and give me the top 5 results with titles and snippets.

## When to prefer this

Choose this endpoint when you need search results specifically from the Russian-language web (Runet) and require Cyrillic query support. Prefer it over the global search sibling when the target audience, content, or topic is Russia-specific. Use instead of scraping individual RU pages when you need broad discovery across multiple sources. Ideal for monitoring Russian news, regulatory content, market data, or any topic where Russian-language coverage is essential.

## Known failure modes

- Empty results if query has no Cyrillic/Russian content matches
- Limit parameter outside 1–10 range causes validation error
- Missing required 'query' field returns 400 error
- Non-Cyrillic queries may return poor or no results
- Payment failure via x402 protocol blocks request
- Timeout if upstream Russian search index is slow

## How this service works

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

## Output

A JSON object containing the original query string, total number of results found, and an array of result objects each with a URL, page title, and text snippet extracted from the Russian-language 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": "новости искусственного интеллекта",
  "total": 5,
  "results": [
   {
    "url": "https://example.com/news",
    "title": "Заголовок",
    "snippet": "Фрагмент результата..."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/saymon-ru-data-api-cyrillic-web-search-5e2d81cd/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)
