Skip to main content
GET
/
v1
/
balances
List
curl --request GET \
  --url https://{defaultHost}/v1/balances \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/balances"
  },
  "data": [
    {
      "id": "7c9bfb45-63c6-4dbd-9bf3-6cb43e226d11",
      "object": "balance",
      "amount": 0,
      "currency": "usd",
      "customer": "3ee4ced1-c999-4ec7-ac17-eaf857adc0d8",
      "created_at": 1767909673,
      "updated_at": 1767909673
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

currency[]
string[]

Only return objects that have the given currencies.

customer_ids[]
string[]

Only return objects that belong to the given customers.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.