Skip to main content
GET

Overview

Returns the credit wallet’s transaction history: deposits, tool execution charges, refunds, payouts and adjustments. Results are ordered newest first and paginated with limit and offset. This is the same wallet that Get Wallet Balance reports on, and amounts are in cents. Auth: Requires authentication (JWT or API key).

Query Parameters

integer
default:"50"
Maximum number of transactions to return. Values above 100 are capped to 100.
integer
default:"0"
Number of transactions to skip
string
Return only one transaction type: deposit, tool_execution, refund, payout or adjustment. Any other value returns a 400.

Response

array
The page of transactions, newest first.
integer
Number of matching transactions across all pages
integer
The limit applied to this page, after the cap
integer
The offset applied to this page

Example

The Python SDK returns the transactions list and takes limit and offset; it does not expose the type filter.