Cancel Order
curl --request DELETE \
--url https://api.pro.daya.co/public/v1/orders/{order_id} \
--header 'X-Api-Key: <x-api-key>'import requests
url = "https://api.pro.daya.co/public/v1/orders/{order_id}"
headers = {"X-Api-Key": "<x-api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Api-Key': '<x-api-key>'}};
fetch('https://api.pro.daya.co/public/v1/orders/{order_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pro.daya.co/public/v1/orders/{order_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pro.daya.co/public/v1/orders/{order_id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.pro.daya.co/public/v1/orders/{order_id}")
.header("X-Api-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pro.daya.co/public/v1/orders/{order_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["X-Api-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Order cancelled successfully",
"data": null,
"timestamp": "2024-01-15T10:40:00Z"
}
Orders
Cancel Order
Cancel an open order
DELETE
/
public
/
v1
/
orders
/
{order_id}
Cancel Order
curl --request DELETE \
--url https://api.pro.daya.co/public/v1/orders/{order_id} \
--header 'X-Api-Key: <x-api-key>'import requests
url = "https://api.pro.daya.co/public/v1/orders/{order_id}"
headers = {"X-Api-Key": "<x-api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Api-Key': '<x-api-key>'}};
fetch('https://api.pro.daya.co/public/v1/orders/{order_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pro.daya.co/public/v1/orders/{order_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pro.daya.co/public/v1/orders/{order_id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.pro.daya.co/public/v1/orders/{order_id}")
.header("X-Api-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pro.daya.co/public/v1/orders/{order_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["X-Api-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Order cancelled successfully",
"data": null,
"timestamp": "2024-01-15T10:40:00Z"
}
Overview
Cancel an open or partially filled order. Only orders with statusopen or partially_filled can be cancelled.
Authentication
Your API key with Trade scope
X-Api-Key: daya_sk_YOUR_API_KEY
Path Parameters
The unique order identifier (UUID) to cancelExample:
550e8400-e29b-41d4-a716-446655440000Request Examples
curl --request DELETE \
--url https://api.pro.daya.co/public/v1/orders/550e8400-e29b-41d4-a716-446655440000 \
--header 'X-Api-Key: daya_sk_YOUR_API_KEY'
const orderId = '550e8400-e29b-41d4-a716-446655440000';
const response = await fetch(
`https://api.pro.daya.co/public/v1/orders/${orderId}`,
{
method: 'DELETE',
headers: { 'X-Api-Key': 'daya_sk_YOUR_API_KEY' }
}
);
const result = await response.json();
console.log('Order cancelled:', result.success);
import requests
order_id = '550e8400-e29b-41d4-a716-446655440000'
headers = {'X-Api-Key': 'daya_sk_YOUR_API_KEY'}
response = requests.delete(
f'https://api.pro.daya.co/public/v1/orders/{order_id}',
headers=headers
)
result = response.json()
print(f"Order cancelled: {result['success']}")
package main
import (
"encoding/json"
"fmt"
"net/http"
)
func main() {
orderID := "550e8400-e29b-41d4-a716-446655440000"
url := fmt.Sprintf("https://api.pro.daya.co/public/v1/orders/%s", orderID)
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Set("X-Api-Key", "daya_sk_YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
fmt.Println("Order cancelled:", result["success"])
}
Response
Indicates if the request was successful
Human-readable response message
Returns
null on successful cancellationISO 8601 timestamp of the response
Success Response
{
"success": true,
"message": "Order cancelled successfully",
"data": null,
"timestamp": "2024-01-15T10:40:00Z"
}
Error Responses
{
"success": false,
"message": "Unauthorized",
"error": {
"code": "API_KEY_INVALID",
"message": "The provided API key is invalid"
},
"timestamp": "2024-01-15T10:40:00Z"
}
{
"success": false,
"message": "Forbidden",
"error": {
"code": "API_KEY_INVALID_SCOPE",
"message": "API key does not have the required Trade scope"
},
"timestamp": "2024-01-15T10:40:00Z"
}
{
"success": false,
"message": "Order not found",
"error": {
"code": "ORDER_NOT_FOUND",
"message": "The specified order does not exist"
},
"timestamp": "2024-01-15T10:40:00Z"
}
{
"success": false,
"message": "Order cannot be cancelled",
"error": {
"code": "ORDER_NOT_CANCELLABLE",
"message": "Order is already filled and cannot be cancelled"
},
"timestamp": "2024-01-15T10:40:00Z"
}
Cancellable Order Statuses
| Status | Can Cancel? |
|---|---|
pending_settlement | No |
new | Yes |
open | Yes |
partially_filled | Yes |
filled | No |
cancelled | No |
rejected | No |
failed | No |
When cancelling a partially filled order, the filled portion remains executed. Only the remaining unfilled quantity is cancelled.
Rate Limits
- 100 requests per minute per API key
Next Steps
Place Order
Place a new order
List Orders
View your orders
⌘I