MCP Bitpanda Server

list_fiat_transactions

Retrieve all fiat transactions from Bitpanda API, sorted by newest first. Filter by type, status, and use cursor-based pagination for efficient data retrieval.

Instructions

Lists all user's fiat transactions from the Bitpanda API. Newest fiat transactions come first. Response is cursor paginated.

Input Schema

NameRequiredDescriptionDefault
cursorNoId 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_sizeNoSize of a page for the paginated response
statusNopending, processing, finished, canceled
typeNobuy, 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" }

You must be authenticated.

Other Tools from MCP Bitpanda Server

Related Tools

ID: af8fynmx2i