Retrieve a log of API usage, including endpoints accessed and credits consumed.
/api/auth/transactions/
endpoint allows you to filter transactions based on various properties. By applying filters directly in your request URL, you can narrow down results to meet specific criteria
/auth/transactions/?created_at__range=2025-01-01,2025-12-31
created_at
?created_at__range=2025-01-01,2025-12-31
status
?status__exact=success
balance_type
?balance_type__exact=leads_by_icp
amount
?amount__lt=-5
after_balance
?after_balance__lte=500
exact
: Matches the exact value (==)gt
: Greater than (>)gte
: Greter than or equal to (>=)lt
: Lower than (<)lte
: Lower than or equal to (<=)range
: Filters values between x
and y
(number or date). Syntax: x,y
Use 'Token <api-key>' as the value
Limit of transactions in result
"100"
Offset in list of transactions
"0"
200
The response is of type object
.