GET /merchants/{merchantID}/funds
Authentication
Accepts a Bearer token (Authorization: Bearer <token>) or an API key (X-Api-Key: <key>).
Path parameters
The UUID of the merchant whose funds you want to retrieve.
Response fields
The endpoint returns an array of fund balance objects, one per payment method.The identifier for the payment method (cryptocurrency).
The available balance as a decimal string (e.g.,
"250.00000000").The token symbol for this payment method (e.g.,
"USDT", "ETH", "BTC").Example request
Example response
Payment methods with a zero balance are included in the response. All supported payment methods for the merchant are always returned.
Error responses
| Status | Description |
|---|---|
401 | Missing or invalid credentials. |
403 | Valid credentials but insufficient permissions. |
404 | No merchant found with the given merchantID. |