curl --request GET \
--url https://gateway.architect.exchange/api/instrumentimport requests
url = "https://gateway.architect.exchange/api/instrument"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.architect.exchange/api/instrument', 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://gateway.architect.exchange/api/instrument",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://gateway.architect.exchange/api/instrument"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://gateway.architect.exchange/api/instrument")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.architect.exchange/api/instrument")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"additional_product_specs": {},
"category": "compute",
"funding_settlement_currency": "<string>",
"initial_margin_pct": "<string>",
"maintenance_margin_pct": "<string>",
"minimum_order_size": "<string>",
"multiplier": "<string>",
"price_scale": 123,
"quote_currency": "<string>",
"symbol": "<string>",
"tick_size": "<string>",
"contract_mark_price": "<string>",
"contract_size": "<string>",
"delisted_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"estimated_funding_supported": true,
"expiration": "2023-11-07T05:31:56Z",
"funding_rate_cap_lower_pct": "<string>",
"funding_rate_cap_upper_pct": "<string>",
"funding_schedule": {
"exceptions": [
{
"date": "2023-12-25",
"times": [
{
"hours": 1,
"minutes": 1,
"seconds": 1
}
],
"reason": "<string>"
}
],
"times": [
{
"days_of_week": [
1
],
"time_of_day": {
"hours": 1,
"minutes": 1,
"seconds": 1
}
}
],
"timezone": "Europe/London"
},
"funding_schedule_calendar_description": "<string>",
"funding_schedule_time_description": "<string>",
"is_closing": true,
"price_band_lower_deviation_pct": "<string>",
"price_band_upper_deviation_pct": "<string>",
"price_bands": "<string>",
"price_quotation": "<string>",
"product": "<string>",
"trading_schedule": {
"segments": [
{
"days_of_week": [
1
],
"duration_seconds": 1,
"expire_all_orders": true,
"hide_market_data": true,
"state": "CLOSED_FROZEN",
"time_of_day": {
"hours": 1,
"minutes": 1,
"seconds": 1
}
}
]
},
"underlying_benchmark_price": "<string>"
}Get instrument
curl --request GET \
--url https://gateway.architect.exchange/api/instrumentimport requests
url = "https://gateway.architect.exchange/api/instrument"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://gateway.architect.exchange/api/instrument', 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://gateway.architect.exchange/api/instrument",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://gateway.architect.exchange/api/instrument"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://gateway.architect.exchange/api/instrument")
.asString();require 'uri'
require 'net/http'
url = URI("https://gateway.architect.exchange/api/instrument")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"additional_product_specs": {},
"category": "compute",
"funding_settlement_currency": "<string>",
"initial_margin_pct": "<string>",
"maintenance_margin_pct": "<string>",
"minimum_order_size": "<string>",
"multiplier": "<string>",
"price_scale": 123,
"quote_currency": "<string>",
"symbol": "<string>",
"tick_size": "<string>",
"contract_mark_price": "<string>",
"contract_size": "<string>",
"delisted_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"estimated_funding_supported": true,
"expiration": "2023-11-07T05:31:56Z",
"funding_rate_cap_lower_pct": "<string>",
"funding_rate_cap_upper_pct": "<string>",
"funding_schedule": {
"exceptions": [
{
"date": "2023-12-25",
"times": [
{
"hours": 1,
"minutes": 1,
"seconds": 1
}
],
"reason": "<string>"
}
],
"times": [
{
"days_of_week": [
1
],
"time_of_day": {
"hours": 1,
"minutes": 1,
"seconds": 1
}
}
],
"timezone": "Europe/London"
},
"funding_schedule_calendar_description": "<string>",
"funding_schedule_time_description": "<string>",
"is_closing": true,
"price_band_lower_deviation_pct": "<string>",
"price_band_upper_deviation_pct": "<string>",
"price_bands": "<string>",
"price_quotation": "<string>",
"product": "<string>",
"trading_schedule": {
"segments": [
{
"days_of_week": [
1
],
"duration_seconds": 1,
"expire_all_orders": true,
"hide_market_data": true,
"state": "CLOSED_FROZEN",
"time_of_day": {
"hours": 1,
"minutes": 1,
"seconds": 1
}
}
]
},
"underlying_benchmark_price": "<string>"
}Query Parameters
Response
Instrument details
compute, crypto, energy, energy_etfs, equities, fx, metals, treasuries Currency the contract settles in: funding settlement for perpetuals, final settlement at expiry for dated contracts.
When the instrument was delisted. A delisted instrument can no longer be traded but remains queryable for historical data. Omitted while listed.
Whether a live index feed is configured for this instrument, so an
intraday funding-rate estimate can be produced. When false, the
estimated-funding endpoint reports the symbol as unsupported and
clients should not surface an estimate for it.
Absolute expiration time for dated contracts. None for perpetuals.
Presence of a value is the discriminator between dated and perpetual contracts.
Machine-readable funding rate schedule for perpetual contracts
Show child attributes
Show child attributes
True while the instrument is closed to new orders and modifications ahead of delisting; cancels are still accepted. Omitted when false.
Umbrella product this instrument belongs to (e.g. XAU for XAU-PERP,
XAU-2026-SEP, XAU-2026-DEC). Instruments that share a product are the
same underlying and can be grouped together in a product list.
Trading schedule for an instrument, containing multiple trading hour segments
Show child attributes
Show child attributes