Notes:
- It takes a maximum of three hours for balances to appear in the list balances call.
- This call lists balances upto the previous three years.
username:password
Authorization: Basic *****************
curl --location --request GET 'https://api-m.sandbox.paypal.com/v1/reporting/balances?as_of_time=2022-03-20T00:00:00.000Z¤cy_code=ALL&include_crypto_currencies=true' \
--header 'Authorization: Basic Og=='
{
"balances": [
{
"currency": "EUR",
"total_balance": {
"currency_code": "EUR",
"value": "258.83"
},
"available_balance": {
"currency_code": "EUR",
"value": "258.83"
},
"withheld_balance": {
"currency_code": "EUR",
"value": "0.00"
}
},
{
"currency": "GBP",
"total_balance": {
"currency_code": "GBP",
"value": "0.00"
},
"available_balance": {
"currency_code": "GBP",
"value": "0.00"
},
"withheld_balance": {
"currency_code": "GBP",
"value": "0.00"
}
},
{
"currency": "USD",
"primary": true,
"total_balance": {
"currency_code": "USD",
"value": "1542775.33"
},
"available_balance": {
"currency_code": "USD",
"value": "1542717.74"
},
"withheld_balance": {
"currency_code": "USD",
"value": "57.59"
}
},
{
"currency": "CAD",
"total_balance": {
"currency_code": "CAD",
"value": "128951.92"
},
"available_balance": {
"currency_code": "CAD",
"value": "128951.92"
},
"withheld_balance": {
"currency_code": "CAD",
"value": "0.00"
}
}
],
"account_id": "ER87FV8ER63HJ",
"as_of_time": "2022-02-24T17:59:59Z",
"last_refresh_time": "2022-02-24T17:59:59Z"
}