Get Issuer Quote Settlement Availability
curl --request GET \
--url https://api.paxos.com/v2/issuer-quote/settlement-availability \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paxos.com/v2/issuer-quote/settlement-availability"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paxos.com/v2/issuer-quote/settlement-availability', 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.paxos.com/v2/issuer-quote/settlement-availability",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.paxos.com/v2/issuer-quote/settlement-availability"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paxos.com/v2/issuer-quote/settlement-availability")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paxos.com/v2/issuer-quote/settlement-availability")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"buy_quantity": "123.456",
"sell_quantity": "0.000",
"market": "PAXGUSD",
"snapshot_at": "2025-01-01T00:00:00Z"
}Issuer Quotes
Get Issuer Quote Settlement Availability
Returns the maximum PAXG quantity available for immediate (T+0) purchase. Note that availability will be zero when the London gold market is closed or unavailable. Sell settlement is always T+1, so sell_quantity is always “0.000”.
GET
/
issuer-quote
/
settlement-availability
Get Issuer Quote Settlement Availability
curl --request GET \
--url https://api.paxos.com/v2/issuer-quote/settlement-availability \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paxos.com/v2/issuer-quote/settlement-availability"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paxos.com/v2/issuer-quote/settlement-availability', 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.paxos.com/v2/issuer-quote/settlement-availability",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.paxos.com/v2/issuer-quote/settlement-availability"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paxos.com/v2/issuer-quote/settlement-availability")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paxos.com/v2/issuer-quote/settlement-availability")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"buy_quantity": "123.456",
"sell_quantity": "0.000",
"market": "PAXGUSD",
"snapshot_at": "2025-01-01T00:00:00Z"
}OAuth Scope
exchange:write_issuer_quote
Authorizations
Paxos APIs use OAuth 2 with the client credentials grant flow.
Token URLs:
- Production: https://oauth.paxos.com/oauth2/token
- Sandbox: https://oauth.sandbox.paxos.com/oauth2/token
Learn more in the API credentials guide →
Query Parameters
Trading pair for the quote. Only "PAXGUSD" is currently supported.
Response
200 - application/json
A successful response.
Maximum PAXG quantity available for immediate (T+0) purchase, to 3 decimal places. Returns "0.000" when the gold market is closed or unavailable.
Always "0.000" — PAXG sell settlement is T+1, not instant.
Trading pair for the issuer quote.
Approximate time at which availability was computed.
Was this page helpful?