Skip to main content
GET
Get account transactions

Use Case:

Audit account credit transactions and review which operations consumed credits.

Authorizations

Authorization
string
header
required

Use the required Token prefix. Example: Authorization: Token xxxxxxxxx

Query Parameters

limit
integer
default:100

How many transactions to return.

offset
integer
default:0

How many to skip, for paging through a long history.

created_at__gte
string<date-time>

Start of the period you want. Pair it with created_at__lte to get a single month or billing cycle.

created_at__lte
string<date-time>

End of the period, included. A bare date means midnight, so use 2026-05-31T23:59:59 to keep the last day.

status
enum<string>

Settled charges are success. pending is money reserved for a request still in flight, and error charges were reversed — leave both out when you reconcile spend.

Available options:
pending,
success,
error
amount__lte
number

Charges at least this large. Charges are negative, so amount__lte=-10 finds everything that cost 10 or more.

amount__gte
number

The other side of the same window — use both to isolate a band, or this one alone with a positive value to see only top-ups.

after_balance__lte
number

Transactions that left the balance at or below this figure. Handy for finding the moment an account started running low.

after_balance__gte
number

Transactions that left the balance at or above this figure.

Response

Account transactions

data
object