S
docs.syncra.money
API ReferenceMerchant APIApi referenceReference

List the tenant's active currencies

The currency dictionary of the authenticated merchant's tenant (HMAC claims or cabinet JWT): UUID, ISO 4217 alpha code and display name of every ACTIVE `p2p_currencies` row. Serves payout amount formatting and CreateMerchantPayOut currency picks.

GET/api/v1/p2p/merchant/currencies

The currency dictionary of the authenticated merchant's tenant (HMAC claims or cabinet JWT): UUID, ISO 4217 alpha code and display name of every ACTIVE p2p_currencies row. Serves payout amount formatting and CreateMerchantPayOut currency picks.

Authorization

MerchantToken MerchantSignature
X-Merchant-Token<token>

64-character hex public merchant token assigned during onboarding.

In: header

X-Signature<token>

Stripe-style HMAC-SHA256 signature. Format: t=<unix_seconds>,v1=<hex_hmac_sha256> where hex_hmac = HMAC-SHA256(webhook_secret, "<unix_seconds>.<raw_body>"). Replay window: 5 minutes (60s future drift tolerated).

In: header

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/api/v1/p2p/merchant/currencies"
{  "data": [    {      "id": "9a3f1c2e-1234-4abc-9def-56789abcdef0",      "code": "RUB",      "name": "Российский рубль",      "status": "ACTIVE"    },    {      "id": "4ac148fe-19a3-45bb-b992-019fac55b72c",      "code": "TRY",      "name": "Türk lirası",      "status": "ACTIVE"    }  ]}
{  "type": "../dictionary",  "title": "string",  "status": 0,  "detail": "string",  "instance": "../dictionary",  "errors": [    {      "field": "amount",      "message": "must be greater than 0",      "code": "POSITIVE_REQUIRED"    }  ]}