# Saymon RU Data API – Cyrillic Research Pack (Search + Top Pages as Markdown)

> Saymon RU Data API – Cyrillic Research Pack (Search + Top Pages as Markdown) 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 a Cyrillic/Russian-language web search and returns the top matching pages converted to LLM-ready Markdown, bundled as a single research package.

## Facts

- Endpoint: GET https://payforapi.com/v1/research
- 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-research-pack-search-top-pages-as-markdown-378d32dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EVKu-9MYxsdDtFsRvKE8M

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-research-pack-search-top-pages-as-markdown-378d32dd
```

Example prompt: Search Russian websites for 'тенденции рынка искусственного интеллекта 2026', fetch up to 5 top pages, and give me all of them as Markdown so I can analyze them.

## When to prefer this

Choose this endpoint when you need both a Cyrillic/Russian web search AND the full readable content of the top matching pages in one call, rather than making separate search and fetch requests. Prefer it over the plain Cyrillic search endpoint when you need page body text for LLM summarization or analysis. Use the 'deep' research variant instead if you need 3 searches and up to 10 pages. Ideal for Russian-language market research, regulatory lookups, news analysis, or any task requiring LLM-consumable content from Russian websites.

## Known failure modes

- Query field missing or empty — returns validation error
- max_pages or limit values outside allowed range (limit 1–10, max_pages 0–5) — returns schema validation error
- No Russian-language results found for the query — returns empty pages array
- Target page inaccessible or blocked — that page excluded from results
- Payment not settled (x402) — request rejected before processing

## How this service works

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

## Output

Returns a JSON object containing the original query string, the number of searches performed, and an array of top pages each with their URL, page title, and full page content rendered as LLM-ready Markdown text.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pages": [
   {
    "url": "https://example.com/a",
    "title": "Обзор",
    "markdown": "..."
   }
  ],
  "query": "тенденции российского рынка 2026",
  "searches": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/saymon-ru-data-api-cyrillic-research-pack-search-top-pages-as-markdown-378d32dd/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)
