MCP Bitpanda Server

list_trades

Retrieve all user trades from Bitpanda API, sorted by newest first, with cursor-based pagination. Filter by trade type and set page size for efficient data access.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
cursorNoId of the last known trade by the client. Only trades after this id are returned. Empty or missing cursor parameter will return trades from the start.
page_sizeNoSize of a page for the paginated response
typeNoOne of `buy` or `sell`

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cursor": { "description": "Id of the last known trade by the client. Only trades after this id are returned. Empty or missing cursor parameter will return trades from the start.", "type": "string" }, "page_size": { "description": "Size of a page for the paginated response", "exclusiveMinimum": 0, "type": "integer" }, "type": { "description": "One of `buy` or `sell`", "enum": [ "buy", "sell" ], "type": "string" } }, "type": "object" }

You must be authenticated.

Other Tools from MCP Bitpanda Server

Related Tools

ID: af8fynmx2i