RFQ
List a subaccount's RFQs with history
Returns a paginated, merged view of a subaccount’s RFQs, combining currently open RFQs with the archived history of filled, cancelled, and expired ones. Supports filtering by rfq_id, status, and a from/to timestamp window, with page and page_size controls. Each entry includes legs, status, timestamps, cost bounds, and fill percentage.
POST
/
private
/
get_rfqs
List a subaccount's RFQs with history
curl --request POST \
--url https://api.derive.xyz/v3/private/get_rfqs \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"rfq_id": null,
"status": null,
"to_timestamp": 9223372036854776000
}
'import requests
url = "https://api.derive.xyz/v3/private/get_rfqs"
payload = {
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"rfq_id": None,
"status": None,
"to_timestamp": 9223372036854776000
}
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({
subaccount_id: 123,
from_timestamp: 0,
page: 1,
page_size: 20,
rfq_id: null,
status: null,
to_timestamp: 9223372036854776000
})
};
fetch('https://api.derive.xyz/v3/private/get_rfqs', 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_rfqs",
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([
'subaccount_id' => 123,
'from_timestamp' => 0,
'page' => 1,
'page_size' => 20,
'rfq_id' => null,
'status' => null,
'to_timestamp' => 9223372036854776000
]),
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_rfqs"
payload := strings.NewReader("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\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_rfqs")
.header("Content-Type", "application/json")
.body("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/private/get_rfqs")
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 \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"rfqs": [
{
"ask_total_cost": "<string>",
"bid_total_cost": "<string>",
"creation_timestamp": 123,
"filled_pct": "<string>",
"label": "<string>",
"last_update_timestamp": 123,
"legs": [
{
"amount": "<string>",
"instrument_name": "<string>"
}
],
"mark_total_cost": "<string>",
"max_total_cost": "<string>",
"min_total_cost": "<string>",
"partial_fill_step": "<string>",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"total_cost": "<string>",
"valid_until": 123,
"wallet": "<string>",
"counterparties": [
"<string>"
]
}
]
}Body
application/json
Related topics
List a subaccount's quotes with historyPoll RFQs visible to a makerPoll quotes received on a taker's RFQs⌘I
List a subaccount's RFQs with history
curl --request POST \
--url https://api.derive.xyz/v3/private/get_rfqs \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"rfq_id": null,
"status": null,
"to_timestamp": 9223372036854776000
}
'import requests
url = "https://api.derive.xyz/v3/private/get_rfqs"
payload = {
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"rfq_id": None,
"status": None,
"to_timestamp": 9223372036854776000
}
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({
subaccount_id: 123,
from_timestamp: 0,
page: 1,
page_size: 20,
rfq_id: null,
status: null,
to_timestamp: 9223372036854776000
})
};
fetch('https://api.derive.xyz/v3/private/get_rfqs', 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_rfqs",
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([
'subaccount_id' => 123,
'from_timestamp' => 0,
'page' => 1,
'page_size' => 20,
'rfq_id' => null,
'status' => null,
'to_timestamp' => 9223372036854776000
]),
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_rfqs"
payload := strings.NewReader("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\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_rfqs")
.header("Content-Type", "application/json")
.body("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.derive.xyz/v3/private/get_rfqs")
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 \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"rfq_id\": null,\n \"status\": null,\n \"to_timestamp\": 9223372036854776000\n}"
response = http.request(request)
puts response.read_body{
"pagination": {
"count": 1,
"num_pages": 1
},
"rfqs": [
{
"ask_total_cost": "<string>",
"bid_total_cost": "<string>",
"creation_timestamp": 123,
"filled_pct": "<string>",
"label": "<string>",
"last_update_timestamp": 123,
"legs": [
{
"amount": "<string>",
"instrument_name": "<string>"
}
],
"mark_total_cost": "<string>",
"max_total_cost": "<string>",
"min_total_cost": "<string>",
"partial_fill_step": "<string>",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"total_cost": "<string>",
"valid_until": 123,
"wallet": "<string>",
"counterparties": [
"<string>"
]
}
]
}