S
docs.syncra.money
API ReferenceMerchant APIApi referenceFinance

Get the current merchant TRC-20 deposit address

Read-only: returns the merchant's current active TRC-20 deposit address used for incoming USDT collateral (merchant operational balance top-up — payouts, withdrawals and commissions; players pay traders' requisites in PayIn deals, NOT this address). `tenant_id` / `merchant_id` in the request are advisory — with HMAC authentication the scope always resolves from the signed token. Returns `404 Not Found` (problem+json) when no address has been provisioned yet.

GET/api/v1/p2p/merchant/wallet/deposit-address

Read-only: returns the merchant's current active TRC-20 deposit address used for incoming USDT collateral (merchant operational balance top-up — payouts, withdrawals and commissions; players pay traders' requisites in PayIn deals, NOT this address). tenant_id / merchant_id in the request are advisory — with HMAC authentication the scope always resolves from the signed token. Returns 404 Not Found (problem+json) when no address has been provisioned yet.

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

application/problem+json

curl -X GET "https://example.com/api/v1/p2p/merchant/wallet/deposit-address"
{  "trc20_address": "TYHCiW3XN5sP9cWJ5T4Dfs9Y18h46t9w1a"}
{  "type": "../dictionary",  "title": "string",  "status": 0,  "detail": "string",  "instance": "../dictionary",  "errors": [    {      "field": "amount",      "message": "must be greater than 0",      "code": "POSITIVE_REQUIRED"    }  ]}
{  "type": "about:blank",  "title": "Not Found",  "status": 404,  "detail": "deposit address not provisioned yet — POST /wallet/deposit-address to generate one",  "instance": "/api/v1/p2p/merchant/wallet/deposit-address"}