# Saymon RU Data API — Pochta Russia Delivery Bundle

> Saymon RU Data API — Pochta Russia Delivery Bundle is a paid API for AI agents from payforapi.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Returns address normalization, postal code lookup, nearest post office, delivery cost (RUB), and estimated delivery days for Russian Post shipments in a single call

## Facts

- Endpoint: GET https://payforapi.com/v1/pochta-delivery
- Price: $0.04/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-pochta-russia-delivery-bundle-554b2fab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aWBkkKZX3NZUbiIwuY_Ev

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-pochta-russia-delivery-bundle-554b2fab
```

Example prompt: What will it cost to send a 500g parcel by Russian Post from postcode 620000 to 'г Москва, ул Тверская, д 1', using mail type ПОСЫЛКА standard category, and how many days will it take to arrive?

## When to prefer this

Choose this endpoint when you need all Russian Post delivery data — address normalization, postal index resolution, post office location, shipping cost, and delivery ETA — bundled into a single paid call rather than querying five separate APIs. Ideal for Russian e-commerce checkouts, logistics platforms, or any agent that needs to present complete delivery information to a user in one step. At $0.04 per call it is cost-effective compared to orchestrating multiple individual API calls.

## Known failure modes

- Invalid or non-existent from_index postcode returns an error or null tariff
- Unrecognizable to_address string that cannot be normalized returns address parsing failure
- Missing required from_index field causes 400-level validation error
- Unsupported mail_type or mail_category values may return no tariff result
- Network timeout or upstream Почта России API unavailability causes 5xx error

## How this service works

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

## Output

A JSON object containing: normalized delivery address with house, street, region and index fields; the nearest post office name, address and postal code; total delivery rate in both rubles and kopecks; minimum and maximum delivery days; and a list of component services that were called internally (address normalization, zip lookup, office finder, tariff, delivery time).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "weight": {
   "type": "integer",
   "minimum": 0
  },
  "to_index": {
   "type": [
    "string",
    "null"
   ],
   "description": "Or a ready receiver postcode"
  },
  "mail_type": {
   "type": "string"
  },
  "from_index": {
   "type": "string",
   "description": "Sender postcode (warehouse/store)"
  },
  "to_address": {
   "type": [
    "string",
    "null"
   ],
   "description": "Delivery address — normalized, postcode taken from it"
  },
  "mail_category": {
   "type": "string"
  },
  "declared_value": {
   "type": [
    "integer",
    "null"
   ]
  },
  "dimension_type": {
   "type": [
    "string",
    "null"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rate": {
   "total_rate": {
    "rub": 250,
    "kopecks": 25000
   }
  },
  "bundle": "pochta-delivery",
  "address": {
   "house": "1",
   "index": "125009",
   "region": "Москва",
   "street": "Тверская",
   "original_address": "г Москва, ул Тверская, д 1"
  },
  "components": [
   "pochta-address",
   "pochta-zip",
   "pochta-offices",
   "pochta-tariff",
   "pochta-delivery-time"
  ],
  "delivery_days": {
   "max": 5,
   "min": 2
  },
  "delivery_office": {
   "type": "ПОЧТАМТ",
   "address": "125009, Москва, ул. Тверская, д. 14",
   "postal_code": "125009"
  }
 }
}
```

## More

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