History
Get historical orders for a subaccount
Returns a paginated history of orders for a single subaccount or for an entire wallet (specify exactly one), optionally bounded by a from/to timestamp window. Each page includes the order records plus pagination info with the total count and number of pages.
POST
/
private
/
get_order_history
Get historical orders for a subaccount
curl --request POST \
--url https://api.derive.xyz/v3/private/get_order_history \
--header 'Content-Type: application/json' \
--data '
{
"from_timestamp": null,
"page": null,
"page_size": null,
"subaccount_id": null,
"to_timestamp": null,
"wallet": null
}
'import requests
url = "https://api.derive.xyz/v3/private/get_order_history"
payload = {
"from_timestamp": None,
"page": None,
"page_size": None,
"subaccount_id": None,
"to_timestamp": None,
"wallet": None
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
from_timestamp: null,
page: null,
page_size: null,
subaccount_id: null,
to_timestamp: null,
wallet: null
})
};
fetch('https://api.derive.xyz/v3/private/get_order_history', 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.derive.xyz/v3/private/get_order_history",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'from_timestamp' => null,
'page' => null,
'page_size' => null,
'subaccount_id' => null,
'to_timestamp' => null,
'wallet' => null
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.derive.xyz/v3/private/get_order_history"
payload := strings.NewReader("{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.derive.xyz/v3/private/get_order_history")
.header("Content-Type", "application/json")
.body("{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/private/get_order_history")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}"
response = http.request(request)
puts response.read_body{
"orders": [
{
"amount": "<string>",
"average_price": "<string>",
"creation_timestamp": 123,
"extra_fee": "<string>",
"filled_amount": "<string>",
"instrument_name": "<string>",
"is_transfer": true,
"last_update_timestamp": 123,
"limit_price": "<string>",
"max_fee": "<string>",
"mmp": true,
"nonce": "<string>",
"order_fee": "<string>",
"order_id": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"replaced_order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"signature": "<string>",
"signature_expiry_sec": 123,
"signed_limit_price": "<string>",
"signer": "<string>",
"subaccount_id": 123,
"trigger_price": "<string>",
"algo_duration_sec": 123,
"algo_num_slices": 123,
"algo_slices_completed": 123,
"algo_type": "twap",
"cancel_reason": "",
"label": "",
"trigger_reject_message": "<string>"
}
],
"pagination": {
"count": 1,
"num_pages": 1
},
"subaccount_id": 123
}Body
application/json
Related topics
Get historical trades for a subaccountGet full portfolio for a subaccountGet full portfolios for all of a wallet's subaccounts⌘I
Get historical orders for a subaccount
curl --request POST \
--url https://api.derive.xyz/v3/private/get_order_history \
--header 'Content-Type: application/json' \
--data '
{
"from_timestamp": null,
"page": null,
"page_size": null,
"subaccount_id": null,
"to_timestamp": null,
"wallet": null
}
'import requests
url = "https://api.derive.xyz/v3/private/get_order_history"
payload = {
"from_timestamp": None,
"page": None,
"page_size": None,
"subaccount_id": None,
"to_timestamp": None,
"wallet": None
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
from_timestamp: null,
page: null,
page_size: null,
subaccount_id: null,
to_timestamp: null,
wallet: null
})
};
fetch('https://api.derive.xyz/v3/private/get_order_history', 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.derive.xyz/v3/private/get_order_history",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'from_timestamp' => null,
'page' => null,
'page_size' => null,
'subaccount_id' => null,
'to_timestamp' => null,
'wallet' => null
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.derive.xyz/v3/private/get_order_history"
payload := strings.NewReader("{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.derive.xyz/v3/private/get_order_history")
.header("Content-Type", "application/json")
.body("{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/private/get_order_history")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"from_timestamp\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}"
response = http.request(request)
puts response.read_body{
"orders": [
{
"amount": "<string>",
"average_price": "<string>",
"creation_timestamp": 123,
"extra_fee": "<string>",
"filled_amount": "<string>",
"instrument_name": "<string>",
"is_transfer": true,
"last_update_timestamp": 123,
"limit_price": "<string>",
"max_fee": "<string>",
"mmp": true,
"nonce": "<string>",
"order_fee": "<string>",
"order_id": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"replaced_order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"signature": "<string>",
"signature_expiry_sec": 123,
"signed_limit_price": "<string>",
"signer": "<string>",
"subaccount_id": 123,
"trigger_price": "<string>",
"algo_duration_sec": 123,
"algo_num_slices": 123,
"algo_slices_completed": 123,
"algo_type": "twap",
"cancel_reason": "",
"label": "",
"trigger_reject_message": "<string>"
}
],
"pagination": {
"count": 1,
"num_pages": 1
},
"subaccount_id": 123
}