list_crypto_transactions
Retrieve paginated crypto transaction history from Bitpanda, including buy, sell, deposit, and withdrawal details. Filter by transaction type or status using cursor-based pagination for efficient data access.
Instructions
Lists all user's crypto transactions from the Bitpanda API. Newest crypto transactions come first. Response is cursor paginated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Id of the last known crypto transaction by the client. Only crypto transactions after this id are returned. Empty or missing cursor parameter will return crypto transactions from the start. | |
page_size | No | Size of a page for the paginated response | |
status | No | One of `pending`, `processing`, `unconfirmed_transaction_out`, `open_invitation`, `finished` or `canceled`. | |
type | No | One of `buy`, `sell`, `deposit`, `withdrawal`, `transfer`, `refund` or `ico`. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cursor": {
"description": "Id of the last known crypto transaction by the client. Only crypto transactions after this id are returned. Empty or missing cursor parameter will return crypto transactions from the start.",
"type": "string"
},
"page_size": {
"description": "Size of a page for the paginated response",
"exclusiveMinimum": 0,
"type": "integer"
},
"status": {
"description": "One of `pending`, `processing`, `unconfirmed_transaction_out`, `open_invitation`, `finished` or `canceled`.",
"enum": [
"pending",
"processing",
"unconfirmed_transaction_out",
"open_invitation",
"finished",
"canceled"
],
"type": "string"
},
"type": {
"description": "One of `buy`, `sell`, `deposit`, `withdrawal`, `transfer`, `refund` or `ico`.",
"enum": [
"buy",
"sell",
"deposit",
"withdrawal",
"transfer",
"refund",
"ico"
],
"type": "string"
}
},
"type": "object"
}