Get account transactions
Your billing history: every charge and top-up on the account, newest first.
Filters combine with AND and are applied before paging. Every __gte / __lte parameter below has a __gt / __lt twin if you need to exclude the boundary itself, and amount also answers to credits, the name the response gives it.
One thing to watch: a value we cannot read — a misspelled status, a malformed date — is dropped rather than refused, so you get a 200 with that condition quietly missing. If a filtered call returns more than you expected, check your parameter spelling first.
Use Case:
Audit account credit transactions and review which operations consumed credits.Authorizations
Use the required Token prefix. Example: Authorization: Token xxxxxxxxx
Query Parameters
How many transactions to return.
How many to skip, for paging through a long history.
Start of the period you want. Pair it with created_at__lte to get a single month or billing cycle.
End of the period, included. A bare date means midnight, so use 2026-05-31T23:59:59 to keep the last day.
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.
pending, success, error Charges at least this large. Charges are negative, so amount__lte=-10 finds everything that cost 10 or more.
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.
Transactions that left the balance at or below this figure. Handy for finding the moment an account started running low.
Transactions that left the balance at or above this figure.
Response
Account transactions