Skip to main content
GET
/
api
/
v1
/
org
/
balance
Fetch wallet balance
curl --request GET \
  --url https://staging.afx-server.com/api/v1/org/balance \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "USD": 100.5,
    "EUR": 250.75,
    "GBP": 300
  }
}
Returns the wallet balances for your business in the specified currencies.

Authorizations

x-api-key
string
header
required

Static business API key from the dashboard

Query Parameters

currencies
string
required

Comma-separated list of currencies to fetch balances for

Response

Returns a map with currencies as keys and balances as values.

data
object