# Saymon RU Data API — Почта России: расчёт тарифа и сроков доставки

> Saymon RU Data API — Почта России: расчёт тарифа и сроков доставки is a paid API for AI agents from payforapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Calculates shipping cost (in RUB) and delivery time range (min/max days) for Russian Post between two Russian postal codes

## Facts

- Endpoint: GET https://payforapi.com/v1/pochta-tariff
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/saymon-ru-data-api-f0ffc03c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c3bmtiSyiBb6SlSZgbElb

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-f0ffc03c
```

Example prompt: How much will it cost to send a 1 kg parcel via Russian Post from postal index 101000 (Moscow) to 190000 (Saint Petersburg), and how many days will it take?

## When to prefer this

Use this endpoint when you need both the shipping cost and the delivery time range for Russian Post in a single call. Prefer this over the sibling 'delivery days only' endpoint when you need pricing information as well. Best suited for e-commerce checkout flows, logistics cost calculators, or any automation that needs to quote Почта России tariffs programmatically between two Russian postal codes.

## Known failure modes

- Invalid or non-existent postal index returns an error or empty response
- Missing required fields (from_index, to_index) results in validation error
- Unsupported mail_type or mail_category combination may return an error
- Network timeout or upstream Russian Post API unavailability
- Weight outside acceptable range may cause rejection

## How this service works

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

## Output

Returns a JSON object with the shipping tariff (rate in RUB and currency), delivery window (min_days and max_days), parcel weight, and the origin and destination postal indices used in the calculation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "weight": {
   "type": "integer",
   "minimum": 0
  },
  "to_index": {
   "type": "string"
  },
  "mail_type": {
   "type": "string"
  },
  "from_index": {
   "type": "string"
  },
  "mail_category": {
   "type": "string"
  },
  "declared_value": {
   "type": [
    "integer",
    "null"
   ]
  },
  "dimension_type": {
   "type": [
    "string",
    "null"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tariff": {
   "rate": "250.00",
   "currency": "RUB",
   "delivery": {
    "max_days": 5,
    "min_days": 2
   }
  },
  "weight": 1000,
  "to_index": "190000",
  "from_index": "101000"
 }
}
```

## More

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