# Saymon RU Data API — Runet Search x100 Bundle

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

Submits up to 100 Russian-language search queries to Yandex in a single paid request, returning ranked results for each query at a 20% bulk discount.

## Facts

- Endpoint: GET https://payforapi.com/v1/ru-search/x100
- Price: $1.6/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-runet-search-x100-bundle-35083738
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B9bZNG-eQon5V0JbasmhQ

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-x100-bundle-35083738
```

Example prompt: Search the Russian internet for these 50 queries about electric vehicles and EV charging stations, returning up to 5 results per query — use the x100 bundle so I get the bulk discount.

## When to prefer this

Choose this endpoint when you need to run many (up to 100) Yandex/Runet search queries in a single atomic payment and want a 20% cost discount over per-query pricing. Ideal for bulk SEO analysis, competitive intelligence sweeps, or keyword research across Russian-language web content. Prefer the x10 bundle for smaller batches, or single-query endpoints if you only have one search term.

## Known failure modes

- Exceeding 100 queries in the array returns a validation error
- limit value outside 1–10 range is rejected
- Malformed or empty queries array causes a bad request error
- Network or upstream Yandex failures may result in non-zero error_count with partial results
- Exhausted grant balance returns an authorization/payment error

## How this service works

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

## Output

A JSON object containing the total number of queries submitted, the number completed, the number of errors, and an array of per-query result objects — each with the original query string, the provider (e.g. 'yandex'), a result count, and an array of search results. Also returns the remaining grant balance for the account.

## 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 100"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "results": [
   {
    "count": 5,
    "query": "запрос 1",
    "results": [],
    "provider": "yandex"
   }
  ],
  "completed": 2,
  "grant_left": 8183,
  "error_count": 0
 }
}
```

## More

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