The Get Merchant Funds endpoint returns the available fund balances for a merchant, with one entry per payment method. Use this endpoint to check how much of each cryptocurrency is available before initiating a withdrawal or collect operation.Documentation Index
Fetch the complete documentation index at: https://docs.iterapay.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
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. |