E-POS API
Fiscalisation in a single POST
REST API for CRM, ERP, online stores, marketplaces, banks, and POS developers. Full access to receipts, statuses, refunds, and the catalog.
Issue a fiscal receipt in one call. Full reference at docs.epos.uz.
curl -X POST https://api.epos.uz/v1/receipts \
-H "Authorization: Bearer $EPOS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"items": [
{ "name": "Choy", "price": 12000, "qty": 2 }
],
"payment": { "method": "qr", "provider": "payme" },
"cashier_id": "CSH-007"
}'What's inside
Issue receipts
POST line items, payment, and cashier id — out comes a fiscal receipt.
Refunds
Refund by the original receipt id, partial or full.
Statuses and confirmations
Get receipt status, fiscal mark, and verification link.
Payments + fiscalisation
Bundled with Click, Payme, Uzum, Humo, Uzcard — money and receipt move together.
Catalog sync
Push items and catalog over the API — no manual uploads.
Security
OAuth2 tokens, IP allowlists, request signing — production-grade.