Money
Get transactions
Lists transaction history. Provide either starting_after_cursor or ending_before_cursor (not both) for cursor-based pagination.
get/v1/transactions
Query parameters
limitinteger
Number of transactions to return (1-100, default 10)
after_timeinteger
Filter for transactions after this UNIX timestamp (exclusive)
before_timeinteger
Filter for transactions before this UNIX timestamp (exclusive)
starting_after_cursorstring
string with format 'txc_base62_encoded_id' used for paginating a query to GET /v1/transactions
Cursor for forward pagination
ending_before_cursorstring
string with format 'txc_base62_encoded_id' used for paginating a query to GET /v1/transactions
Cursor for backward pagination
sort'transaction_time' | '-transaction_time' | 'amount' | '-amount'
Sort field. Prefix with - for descending order. Default: -transaction_time. Valid sort fields are:
transaction_type'stripe_card_payment' | 'manual_payment' | 'credit_grant' | 'refund' | 'buy_order' | 'sell_order'
Filter transactions by type (e.g. buy_order)
Response
Successfully retrieved transactions
Example response
{
"object": "list",
"data": [
{
"object": "transaction",
"transaction_time": 1640995200,
"amount_cents": 50000,
"details": {
"object": "transaction_details"
}
}
]
}