Get Order Trade History
This API retrieves the trade details of orders on the platform.
Prerequisites
Before using this endpoint, ensure you have read the How to Generate a Signature guide. This guide explains the steps required to create the signature
parameter needed to authenticate your request.
Key Notes
The request requires specific query parameters to filter results. See details below.
You must provide a valid
timestamp
andsignature
in the query parameters.The
x-api-key
must be included in the request headers for authentication.
Get Order Trades
GET
https://nami.exchange/api/v3/spot/trade
Headers
Content-Type
application/json
x-api-key
<Your secret key>
Query Parameters
side
string
The side of the order (buy/sell).
No
buy
symbol
string
Trading pair symbol.
No
BTC/USD
hideCanceled
boolean
Whether to hide canceled orders.
No
true
pageSize
integer
Number of orders per page.
No
50
page
integer
Page number.
No
1
timeFrom
date-time
Filter orders from this time.
No
2025-01-01T00:00:00Z
timeTo
date-time
Filter orders up to this time.
No
2025-01-10T00:00:00Z
signature
string
The signature is the secret key encoded as ASCII data. It is required for authenticating the request.
Yes
a1b2c3d4e5f6g7h8i9j0k
timestamp
date-time
The timestamp is the time the request was sent.
Yes
1670000000000
Response
Last updated