Market Data
Query anonymized public trade history
Returns paginated, anonymized settled trades with optional filters: trade_id (a UUID, which overrides all other filters), instrument_name, instrument_type (erc20/option/perp), currency, subaccount_id, tx_status (a batch-status name, default Settled), and from_timestamp/to_timestamp. Each trade is enriched with its settlement status and transaction hash. Public endpoint.
POST
/
public
/
get_trade_history
Query anonymized public trade history
curl --request POST \
--url https://api.derive.xyz/v3/public/get_trade_history \
--header 'Content-Type: application/json' \
--data '
{
"currency": null,
"from_timestamp": null,
"instrument_name": null,
"instrument_type": null,
"page": null,
"page_size": null,
"subaccount_id": null,
"to_timestamp": null,
"trade_id": null,
"tx_status": null
}
'import requests
url = "https://api.derive.xyz/v3/public/get_trade_history"
payload = {
"currency": None,
"from_timestamp": None,
"instrument_name": None,
"instrument_type": None,
"page": None,
"page_size": None,
"subaccount_id": None,
"to_timestamp": None,
"trade_id": None,
"tx_status": 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({
currency: null,
from_timestamp: null,
instrument_name: null,
instrument_type: null,
page: null,
page_size: null,
subaccount_id: null,
to_timestamp: null,
trade_id: null,
tx_status: null
})
};
fetch('https://api.derive.xyz/v3/public/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/public/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([
'currency' => null,
'from_timestamp' => null,
'instrument_name' => null,
'instrument_type' => null,
'page' => null,
'page_size' => null,
'subaccount_id' => null,
'to_timestamp' => null,
'trade_id' => null,
'tx_status' => 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/public/get_trade_history"
payload := strings.NewReader("{\n \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": 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/public/get_trade_history")
.header("Content-Type", "application/json")
.body("{\n \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/public/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 \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": null\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"trades": [
{
"expected_rebate": "<string>",
"extra_fee": "<string>",
"index_price": "<string>",
"instrument_name": "<string>",
"mark_price": "<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>",
"wallet": "<string>"
}
]
}Body
application/json
Required range:
x >= 0Required range:
x >= 0⌘I
Query anonymized public trade history
curl --request POST \
--url https://api.derive.xyz/v3/public/get_trade_history \
--header 'Content-Type: application/json' \
--data '
{
"currency": null,
"from_timestamp": null,
"instrument_name": null,
"instrument_type": null,
"page": null,
"page_size": null,
"subaccount_id": null,
"to_timestamp": null,
"trade_id": null,
"tx_status": null
}
'import requests
url = "https://api.derive.xyz/v3/public/get_trade_history"
payload = {
"currency": None,
"from_timestamp": None,
"instrument_name": None,
"instrument_type": None,
"page": None,
"page_size": None,
"subaccount_id": None,
"to_timestamp": None,
"trade_id": None,
"tx_status": 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({
currency: null,
from_timestamp: null,
instrument_name: null,
instrument_type: null,
page: null,
page_size: null,
subaccount_id: null,
to_timestamp: null,
trade_id: null,
tx_status: null
})
};
fetch('https://api.derive.xyz/v3/public/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/public/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([
'currency' => null,
'from_timestamp' => null,
'instrument_name' => null,
'instrument_type' => null,
'page' => null,
'page_size' => null,
'subaccount_id' => null,
'to_timestamp' => null,
'trade_id' => null,
'tx_status' => 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/public/get_trade_history"
payload := strings.NewReader("{\n \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": 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/public/get_trade_history")
.header("Content-Type", "application/json")
.body("{\n \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/public/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 \"currency\": null,\n \"from_timestamp\": null,\n \"instrument_name\": null,\n \"instrument_type\": null,\n \"page\": null,\n \"page_size\": null,\n \"subaccount_id\": null,\n \"to_timestamp\": null,\n \"trade_id\": null,\n \"tx_status\": null\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"trades": [
{
"expected_rebate": "<string>",
"extra_fee": "<string>",
"index_price": "<string>",
"instrument_name": "<string>",
"mark_price": "<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>",
"wallet": "<string>"
}
]
}