History
Get historical trades for a subaccount
Returns a paginated history of executed trades for a single subaccount or an entire wallet (specify exactly one), with optional filters for a time window, order id, instrument name, or quote id. The response includes the trade records and pagination info with total count and page count.
POST
/
private
/
get_trade_history
Get historical trades for a subaccount
curl --request POST \
--url https://api.derive.xyz/v3/private/get_trade_history \
--header 'Content-Type: application/json' \
--data '
{
"from_timestamp": null,
"instrument_name": null,
"order_id": null,
"page": null,
"page_size": null,
"quote_id": null,
"subaccount_id": null,
"to_timestamp": null,
"wallet": null
}
'import requests
url = "https://api.derive.xyz/v3/private/get_trade_history"
payload = {
"from_timestamp": None,
"instrument_name": None,
"order_id": None,
"page": None,
"page_size": None,
"quote_id": 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,
instrument_name: null,
order_id: null,
page: null,
page_size: null,
quote_id: null,
subaccount_id: null,
to_timestamp: null,
wallet: null
})
};
fetch('https://api.derive.xyz/v3/private/get_trade_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_trade_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,
'instrument_name' => null,
'order_id' => null,
'page' => null,
'page_size' => null,
'quote_id' => 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_trade_history"
payload := strings.NewReader("{\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": 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_trade_history")
.header("Content-Type", "application/json")
.body("{\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": 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_trade_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 \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"subaccount_id": 123,
"trades": [
{
"expected_rebate": "<string>",
"extra_fee": "<string>",
"index_price": "<string>",
"instrument_name": "<string>",
"is_transfer": true,
"label": "<string>",
"mark_price": "<string>",
"op_uuid": "<string>",
"order_id": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realized_pnl": "<string>",
"realized_pnl_excl_fees": "<string>",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"timestamp": 123,
"trade_amount": "<string>",
"trade_fee": "<string>",
"trade_id": "<string>",
"trade_price": "<string>",
"tx_hash": "<string>"
}
]
}Body
application/json
Required range:
x >= 0Required range:
x >= 0⌘I
Get historical trades for a subaccount
curl --request POST \
--url https://api.derive.xyz/v3/private/get_trade_history \
--header 'Content-Type: application/json' \
--data '
{
"from_timestamp": null,
"instrument_name": null,
"order_id": null,
"page": null,
"page_size": null,
"quote_id": null,
"subaccount_id": null,
"to_timestamp": null,
"wallet": null
}
'import requests
url = "https://api.derive.xyz/v3/private/get_trade_history"
payload = {
"from_timestamp": None,
"instrument_name": None,
"order_id": None,
"page": None,
"page_size": None,
"quote_id": 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,
instrument_name: null,
order_id: null,
page: null,
page_size: null,
quote_id: null,
subaccount_id: null,
to_timestamp: null,
wallet: null
})
};
fetch('https://api.derive.xyz/v3/private/get_trade_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_trade_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,
'instrument_name' => null,
'order_id' => null,
'page' => null,
'page_size' => null,
'quote_id' => 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_trade_history"
payload := strings.NewReader("{\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": 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_trade_history")
.header("Content-Type", "application/json")
.body("{\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": 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_trade_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 \"instrument_name\": null,\n \"order_id\": null,\n \"page\": null,\n \"page_size\": null,\n \"quote_id\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"wallet\": null\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"subaccount_id": 123,
"trades": [
{
"expected_rebate": "<string>",
"extra_fee": "<string>",
"index_price": "<string>",
"instrument_name": "<string>",
"is_transfer": true,
"label": "<string>",
"mark_price": "<string>",
"op_uuid": "<string>",
"order_id": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realized_pnl": "<string>",
"realized_pnl_excl_fees": "<string>",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"timestamp": 123,
"trade_amount": "<string>",
"trade_fee": "<string>",
"trade_id": "<string>",
"trade_price": "<string>",
"tx_hash": "<string>"
}
]
}