Skip to main content
GET
/
v1
/
balance_transactions
List
curl --request GET \
  --url https://{defaultHost}/v1/balance_transactions \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/balance_transactions"
  },
  "data": [
    {
      "id": "6548b7ee-aaf4-4e6d-9086-fa64afd92b34",
      "object": "balance_transaction",
      "amount": 2000,
      "currency": "usd",
      "ending_balance_amount": 0,
      "transaction_type": "adjustment",
      "balance": "0ff7bea5-0575-4214-8575-ff7ce8b96595",
      "customer": "7ce71fcf-09f3-4323-b25a-b539772044d7",
      "checkout": null,
      "created_at": 1767909672,
      "updated_at": 1767909672
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

checkout_ids[]
string[]

Only return objects that belong to the given checkouts.

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.