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
http.setRequestHeader("Content-Type", value: "application/json")
http.setRequestHeader("X-MBX-APIKEY", value: "{{binance-api-key}}")
var resp: CkoHttpResponse? = http.quickRequest("POST", url: "https://domain.com/sapi/v1/bswap/swap?quoteAsset=USDT&baseAsset=BUSD"eQty=×tamp={{timestamp}}&signature={{signature}}")
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/sapi/v1/bswap/swap?quoteAsset=USDT&baseAsset=BUSD"eQty=×tamp={{timestamp}}&signature={{signature}}
Postman Collection Item JSON
{
"name": "Swap (TRADE)",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-MBX-APIKEY",
"value": "{{binance-api-key}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/sapi/v1/bswap/swap?quoteAsset=USDT&baseAsset=BUSD"eQty=×tamp={{timestamp}}&signature={{signature}}",
"host": [
"{{url}}"
],
"path": [
"sapi",
"v1",
"bswap",
"swap"
],
"query": [
{
"key": "quoteAsset",
"value": "USDT"
},
{
"key": "baseAsset",
"value": "BUSD"
},
{
"key": "quoteQty",
"value": ""
},
{
"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": "Swap `quoteAsset` for `baseAsset`.\n\nWeight(UID): 1000 (Additional: 3 times one second)"
},
"response": [
]
}