Skip to main content
GET
/
v1
/
wallets
Get merchant wallets
curl --request GET \
  --url https://api-global.fastpaybrasil.com/v1/wallets \
  --header 'Authorization: Bearer <token>'
[
  {
    "currency": "BRL",
    "isWithdrawalEnabled": true,
    "balance": {
      "available": 1000.5,
      "pending": 250,
      "reserved": 100
    },
    "usdBalance": {
      "available": 200.1,
      "pending": 50,
      "reserved": 20
    }
  }
]

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the JWT token obtained from the login endpoint in the Authorization header as 'Bearer {token}'.

Query Parameters

merchantId
string
required

Merchant ID to get wallets for

Example:

"2vorkDcXyvzifL63YX09S9VqcnI"

currency
string

Filter wallets by currency code

Example:

"BRL"

Response

Successfully retrieved the list of wallets

currency
string

The currency code of the wallet

Example:

"BRL"

isWithdrawalEnabled
boolean

Whether withdrawals are enabled for this currency

Example:

true

balance
object

Balance amounts in the original currency

usdBalance
object

Balance amounts converted to USD