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