Lightweight Search for trades V2

This endpoint allows you to search for trades by date range, id, user_id, status, asset symbol, type, initiated_by individually or in combination.

SecuritybearerAuth
Request
query Parameters
start
string

Start date for search in UTC timezone

Example: start=2024-06-01T00:00:00Z
end
string

End date for search in UTC timezone

Example: end=2024-06-30T23:59:59Z
status
string

The trade status

Enum: "created" "failed" "in progress" "finished" "expired"
Example: status=failed
initiated_by
string

The initiator of the trade

Enum: "user" "bitpanda_corporate_action" "bitpanda_manual_trade" "bitpanda_savings" "bitpanda_swaps" "automated_order"
Example: initiated_by=user
asset_symbol
string

The asset symbol

Example: asset_symbol=BTC
type
string

The trade type

Enum: "buy" "sell"
Example: type=buy
id
string <uuid>

The unique trade identifier

Example: id=abc5d766-e5da-4dd9-bd18-58a43c35b8ac
user_id
string <uuid>

Unique User Identifier

Example: user_id=abc2d123-a5db-4dd9-bd18-58a43c35b9ab
page_size
integer

Number of elements to be displayed on a page

Example: page_size=10
cursor
string <uuid>

Cursor for the next page

Example: cursor=abc5d766-e5da-4dd9-bd18-58a43c35b8ac
Responses
200

List trades that match the search query parameters

401

Error

422

Error

429

Too Many Requests

500

Error

503

Maintenance or Service unavailable

get/v2/trades/search
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}