Swift3 / Binance spot API / All Orders (USER_DATA)
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
let queryParams = CkoJsonObject()!
queryParams.update("symbol", value: "BNBUSDT")
queryParams.update("timestamp", value: "{{timestamp}}")
queryParams.update("signature", value: "{{signature}}")
http.setRequestHeader("Content-Type", value: "application/json")
http.setRequestHeader("X-MBX-APIKEY", value: "{{binance-api-key}}")
var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/api/v3/allOrders", json: queryParams)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -G -d "symbol=BNBUSDT"
-d "timestamp=%7B%7Btimestamp%7D%7D"
-d "signature=%7B%7Bsignature%7D%7D"
-H "Content-Type: application/json"
-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/api/v3/allOrders
Postman Collection Item JSON
{
"name": "All Orders (USER_DATA)",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-MBX-APIKEY",
"value": "{{binance-api-key}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/api/v3/allOrders?symbol=BNBUSDT×tamp={{timestamp}}&signature={{signature}}",
"host": [
"{{url}}"
],
"path": [
"api",
"v3",
"allOrders"
],
"query": [
{
"key": "symbol",
"value": "BNBUSDT",
"description": "Trading symbol, e.g. BNBUSDT"
},
{
"key": "orderId",
"value": "",
"description": "Order id",
"disabled": true
},
{
"key": "startTime",
"value": "",
"description": "UTC timestamp in ms",
"disabled": true
},
{
"key": "endTime",
"value": "",
"description": "UTC timestamp in ms",
"disabled": true
},
{
"key": "limit",
"value": "500",
"description": "Default 500; max 1000.",
"disabled": true
},
{
"key": "recvWindow",
"value": "5000",
"description": "The value cannot be greater than 60000",
"disabled": true
},
{
"key": "timestamp",
"value": "{{timestamp}}",
"description": "UTC timestamp in ms"
},
{
"key": "signature",
"value": "{{signature}}",
"description": "Signature"
}
]
},
"description": "Get all account orders; active, canceled, or filled..\n\n- If `orderId` is set, it will get orders >= that `orderId`. Otherwise most recent orders are returned.\n- For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time.\n- If `startTime` and/or `endTime` provided, `orderId` is not required\n\nWeight(IP): 10"
},
"response": [
]
}