Balance H2H
GET
https://api.PayStar.uk/api/v1/balance/merchant
Last modified:2025-04-29 19:06:45
INFO
Please note that many limits and restrictions are tied specifically to the endpoint balance. If you have multiple authorization keys, we recommend checking the balance for each key individually.
curl --request GET \
--url https://api.PayStar.uk/api/v1/balance/merchant?currency=USD' \
--header 'Authorization: Bearer Your Token' \
--header 'accept: text/plain' \
{
"currency": "USD", // Currency of the balance
"merchantBalance": 10000.00, // Current balance of the merchant
"merchantOverdraft": 1000.00, // Permissible overdraft amount
"pipelineBalance": 5000.00, // Current pipeline balance
"pipelineProcessingOrdersDeposit": 0.00, // Current amount of deposits in non-final statuses (Created, Processing)
"pipelineProcessingOrdersWithdrawals": 4000.00 // Current amount of withdrawals in non-final statuses (Created, Processing)
"pipelineAvailableBalance": 1000.0 // Available for usw pipeline balance
}
Request
Query Params
currency
string
required
Example:
USD
Request samples
Responses
Modified at 2025-04-29 19:06:45