curl --location 'https://api.fusion.bitpanda.com/v1/account/trades?pair=BTC-EUR%2CETH-USD&orderId=a1b2c3d4-e5f6-7890-abcd-ef1234567890&startTime=1726041600&endTime=1726127999&limit=100&cursor=eyJpZCI6IjEyMyJ9' \
--header 'x-api-key: <YOUR_API_KEY>'{
"data": [
{
"id": "trade-a1b2c3d4",
"orderId": "3aaad2dd-65ef-4ce8-98da-8af52a5b6f3e",
"pair": "BTC-EUR",
"side": "sell",
"price": "61501.20",
"quantity": "0.15000000",
"fee": {
"amount": "2.25",
"currency": "EUR"
},
"totalAmount": "9225.18",
"executedAt": "2025-09-11T12:15:30.000Z"
}
],
"meta": {
"limit": 100,
"hasNextPage": false,
"nextCursor": null
}
}