Get All Orders
Retrieve all orders of any status.
For all transactions related to the private endpoint, you must authorize before sending your request.
For more information you can check our Authentication V1 article.
You can access all orders with
orderId
,pairSymbol
,startTime
,endTime
,page
andlimit
parameters.Can access all order information with
/api/v1/allOrders
endpoint.Canceled, filled, partial and untouched orders can be viewed.
All Orders
GET
https://api.btcturk.com/api/v1/allOrders
Query Parameters
orderId
integer
If orderId set, it will return all orders greater than or equals to this order id
pairSymbol
string
BTCTRY, ETHTRY etc.
startTime
integer
start time
endTime
integer
end time
page
integer
page number
limit
string
default 100, max 1000
Headers
X-PCK
string
API public key. You can create the API key from the Account > API Access page in your exchange account.
X-Stamp
integer
Nonce must be current timestamp in miliseconds. It is a must to sync your current time with API server time which is in miliseconds format. Our servers are using UTC timezone.
X-Signature
string
Signature is a HMAC-SHA256 encoded message. The HMAC-SHA256 code must be generated using a private key that contains a timestamp as nonce and your API key.
Code Example
Last updated