MCP Bitpanda Server

list_crypto_transactions

Retrieve paginated crypto transaction history from Bitpanda API, sorted from newest to oldest. Filter by type and status, and use cursor-based pagination for efficient data retrieval.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
cursorNoId 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_sizeNoSize of a page for the paginated response
statusNoOne of `pending`, `processing`, `unconfirmed_transaction_out`, `open_invitation`, `finished` or `canceled`.
typeNoOne 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" }

You must be authenticated.

Other Tools from MCP Bitpanda Server

Related Tools

ID: af8fynmx2i