# Saymon RU Data API — Russian Post Parcel Tracking

> Saymon RU Data API — Russian Post Parcel Tracking is a paid API for AI agents from payforapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Tracks a Russian Post (Почта России) shipment by barcode/tracking number, returning current status and movement history

## Facts

- Endpoint: GET https://payforapi.com/v1/pochta-track
- Price: $0.01/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-russian-post-parcel-tracking-ed1b8c30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4MvkudAawW2GmGv5mRVFG

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-russian-post-parcel-tracking-ed1b8c30
```

Example prompt: Can you track my Russian Post parcel with barcode RA123456789RU and tell me where it is right now and what the latest status is?

## When to prefer this

Use this endpoint when you specifically need to track a Russian Post (Почта России) shipment identified by a standard Russian Post tracking barcode (e.g. RA, RR, RC prefix format). Prefer this over generic parcel trackers when the shipment is exclusively handled by Почта России and you need granular per-event movement history with Russian-language status descriptions.

## Known failure modes

- Invalid or malformed barcode returns an error or empty operations list
- Barcode not found in Russian Post system (unregistered or too new)
- Russian Post API upstream outage causing timeout or error response
- Barcode format does not match Russian Post standard (e.g. not 13-character format like RA123456789RU)
- Very recently shipped items may have no tracking events yet

## How this service works

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

## Output

Returns a JSON object with the current shipment status (e.g. 'В пути' / 'In transit', 'Delivered'), the barcode, and an array of tracking operations each containing a timestamp, location/place, and a human-readable description of what happened at that point in the shipment's journey.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "barcode": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "В пути",
  "barcode": "RA123456789RU",
  "operations": [
   {
    "date": "2026-09-01T10:00:00",
    "place": "Москва",
    "description": "Покинуло сортировочный центр"
   }
  ]
 }
}
```

## More

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