RFQ
Poll quotes received on a taker's RFQs
Taker-side call that lists the maker quotes received against RFQs owned by the subaccount. Supports filtering by quote_id, rfq_id, status, and a timestamp window, with pagination. Returns public quote views (including the maker’s wallet) without any signing material.
POST
/
private
/
poll_quotes
Poll quotes received on a taker's RFQs
curl --request POST \
--url https://api.derive.xyz/v3/private/poll_quotes \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"quote_id": null,
"rfq_id": null,
"status": null,
"to_timestamp": 9223372036854776000
}
'import requests
url = "https://api.derive.xyz/v3/private/poll_quotes"
payload = {
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"quote_id": None,
"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,
quote_id: null,
rfq_id: null,
status: null,
to_timestamp: 9223372036854776000
})
};
fetch('https://api.derive.xyz/v3/private/poll_quotes', 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/poll_quotes",
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,
'quote_id' => null,
'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/poll_quotes"
payload := strings.NewReader("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"quote_id\": null,\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/poll_quotes")
.header("Content-Type", "application/json")
.body("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"quote_id\": null,\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/poll_quotes")
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 \"quote_id\": null,\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
},
"quotes": [
{
"creation_timestamp": 123,
"fill_pct": "<string>",
"last_update_timestamp": 123,
"legs": [
{
"amount": "<string>",
"instrument_name": "<string>",
"price": "<string>"
}
],
"legs_hash": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"wallet": "<string>"
}
]
}Body
application/json
⌘I
Poll quotes received on a taker's RFQs
curl --request POST \
--url https://api.derive.xyz/v3/private/poll_quotes \
--header 'Content-Type: application/json' \
--data '
{
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"quote_id": null,
"rfq_id": null,
"status": null,
"to_timestamp": 9223372036854776000
}
'import requests
url = "https://api.derive.xyz/v3/private/poll_quotes"
payload = {
"subaccount_id": 123,
"from_timestamp": 0,
"page": 1,
"page_size": 20,
"quote_id": None,
"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,
quote_id: null,
rfq_id: null,
status: null,
to_timestamp: 9223372036854776000
})
};
fetch('https://api.derive.xyz/v3/private/poll_quotes', 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/poll_quotes",
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,
'quote_id' => null,
'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/poll_quotes"
payload := strings.NewReader("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"quote_id\": null,\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/poll_quotes")
.header("Content-Type", "application/json")
.body("{\n \"subaccount_id\": 123,\n \"from_timestamp\": 0,\n \"page\": 1,\n \"page_size\": 20,\n \"quote_id\": null,\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/poll_quotes")
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 \"quote_id\": null,\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
},
"quotes": [
{
"creation_timestamp": 123,
"fill_pct": "<string>",
"last_update_timestamp": 123,
"legs": [
{
"amount": "<string>",
"instrument_name": "<string>",
"price": "<string>"
}
],
"legs_hash": "<string>",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rfq_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subaccount_id": 123,
"wallet": "<string>"
}
]
}