Skip to main content
GET
/
instrument
cURL
curl --request GET \
  --url https://gateway.architect.exchange/api/instrument
import 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": {},
  "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>",
  "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>",
  "price_band_lower_deviation_pct": "<string>",
  "price_band_upper_deviation_pct": "<string>",
  "price_bands": "<string>",
  "price_quotation": "<string>",
  "trading_schedule": {
    "segments": [
      {
        "days_of_week": [
          1
        ],
        "duration_seconds": 1,
        "expire_all_orders": true,
        "hide_market_data": true,
        "time_of_day": {
          "hours": 1,
          "minutes": 1,
          "seconds": 1
        }
      }
    ]
  },
  "underlying_benchmark_price": "<string>"
}

Query Parameters

symbol
string
required

Response

Instrument details

additional_product_specs
object
required
category
enum<string>
required
Available options:
compute,
energy,
energy_etfs,
equities,
fx,
metals,
treasuries
funding_settlement_currency
string
required
initial_margin_pct
string
required
maintenance_margin_pct
string
required
minimum_order_size
string
required
multiplier
string
required
price_scale
integer<int64>
required
quote_currency
string
required
symbol
string
required
tick_size
string
required
contract_mark_price
string | null
contract_size
string | null
description
string | null
estimated_funding_supported
boolean

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.

expiration
string<date-time> | null

Absolute expiration time for dated contracts. None for perpetuals. Presence of a value is the discriminator between dated and perpetual contracts.

funding_rate_cap_lower_pct
string | null
funding_rate_cap_upper_pct
string | null
funding_schedule
null | object

Machine-readable funding rate schedule for perpetual contracts

funding_schedule_calendar_description
string | null
funding_schedule_time_description
string | null
price_band_lower_deviation_pct
string | null
price_band_upper_deviation_pct
string | null
price_bands
string | null
price_quotation
string | null
trading_schedule
null | object

Trading schedule for an instrument, containing multiple trading hour segments

underlying_benchmark_price
string | null