Trade

getWalletTrades

get

Fetches all completed trades involving the wallet, optionally restricted to one trading pair.

Authorizations
Path parameters
wallet_addressstringRequired
Query parameters
trading_pairstringOptional
cursorstringOptional

Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous response.

limitinteger · int64Optional

The maximum number of items to return.

countbooleanOptional

Returns the total number of items in the collection.

Responses
200
OK
application/json
get
GET /api/v1/wallets/{wallet_address}/trades HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "items": [
    {
      "id": "text",
      "sequenceNo": 1,
      "transactionDate": "2025-07-17T06:06:55.278Z",
      "finalityDate": "2025-07-17T06:06:55.278Z",
      "transactionType": "BUY",
      "baseTokenSymbol": "text",
      "quoteTokenSymbol": "text",
      "baseTokenQuantity": "text",
      "quoteTokenQuantity": "text",
      "price": "text",
      "commission": "text",
      "orderId": "text",
      "transactionHash": "text"
    }
  ],
  "next_cursor": "text",
  "total_count": 1
}