List instruments
curl --request GET \
--url https://api.polynode.dev/v3/perps/instruments \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/perps/instruments"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.polynode.dev/v3/perps/instruments', 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.polynode.dev/v3/perps/instruments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.polynode.dev/v3/perps/instruments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.polynode.dev/v3/perps/instruments")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/perps/instruments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"base_asset": "SP500",
"category": "index",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 1,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SP500-USD"
},
{
"base_asset": "GOLD",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 2,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "GOLD-USD"
},
{
"base_asset": "WTIOIL",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 3,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "WTIOIL-USD"
},
{
"base_asset": "NAS100",
"category": "index",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 4,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "NAS100-USD"
},
{
"base_asset": "SILVER",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 5,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SILVER-USD"
},
{
"base_asset": "BTC",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 6,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "BTC-USD"
},
{
"base_asset": "ETH",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 7,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "ETH-USD"
},
{
"base_asset": "SOL",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 8,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 4,
"quantity_decimals": 2,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SOL-USD"
},
{
"base_asset": "SPCX",
"category": "equity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 9,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 10,
"max_limit_notional": "250000",
"max_market_notional": "50000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.10",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 10
},
{
"lower_bound": "200000",
"max_leverage": 5
},
{
"lower_bound": "500000",
"max_leverage": 3
},
{
"lower_bound": "1000000",
"max_leverage": 2
},
{
"lower_bound": "2000000",
"max_leverage": 1
}
],
"symbol": "SPCX-USD"
},
{
"base_asset": "HYPE",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 10,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "HYPE-USD"
}
]
}Perps Market Data
Instruments
Every listed perps instrument with full contract config (leverage, risk tiers, precision, funding interval), plus first_seen. Filter with ?category= (crypto, index, commodity, equity).
GET
/
v3
/
perps
/
instruments
List instruments
curl --request GET \
--url https://api.polynode.dev/v3/perps/instruments \
--header 'x-api-key: <api-key>'import requests
url = "https://api.polynode.dev/v3/perps/instruments"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.polynode.dev/v3/perps/instruments', 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.polynode.dev/v3/perps/instruments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.polynode.dev/v3/perps/instruments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.polynode.dev/v3/perps/instruments")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.polynode.dev/v3/perps/instruments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"base_asset": "SP500",
"category": "index",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 1,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SP500-USD"
},
{
"base_asset": "GOLD",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 2,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "GOLD-USD"
},
{
"base_asset": "WTIOIL",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 3,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "WTIOIL-USD"
},
{
"base_asset": "NAS100",
"category": "index",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 4,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "NAS100-USD"
},
{
"base_asset": "SILVER",
"category": "commodity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 5,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SILVER-USD"
},
{
"base_asset": "BTC",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 6,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 1,
"quantity_decimals": 5,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "BTC-USD"
},
{
"base_asset": "ETH",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 7,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "ETH-USD"
},
{
"base_asset": "SOL",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 8,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 4,
"quantity_decimals": 2,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "SOL-USD"
},
{
"base_asset": "SPCX",
"category": "equity",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 9,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 10,
"max_limit_notional": "250000",
"max_market_notional": "50000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.10",
"price_decimals": 2,
"quantity_decimals": 4,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 10
},
{
"lower_bound": "200000",
"max_leverage": 5
},
{
"lower_bound": "500000",
"max_leverage": 3
},
{
"lower_bound": "1000000",
"max_leverage": 2
},
{
"lower_bound": "2000000",
"max_leverage": 1
}
],
"symbol": "SPCX-USD"
},
{
"base_asset": "HYPE",
"category": "crypto",
"first_seen": 1783598256140,
"funding_interval": "1h",
"instrument_id": 10,
"instrument_type": "perpetual",
"liquidation_fee": "0.005",
"max_leverage": 20,
"max_limit_notional": "500000",
"max_market_notional": "100000",
"max_order_count": 200,
"min_notional": "10",
"price_bounds": "0.05",
"price_decimals": 3,
"quantity_decimals": 3,
"quote_asset": "pUSD",
"risk_tiers": [
{
"lower_bound": "0",
"max_leverage": 20
},
{
"lower_bound": "250000",
"max_leverage": 10
},
{
"lower_bound": "1000000",
"max_leverage": 8
},
{
"lower_bound": "2500000",
"max_leverage": 6
},
{
"lower_bound": "5000000",
"max_leverage": 5
},
{
"lower_bound": "7500000",
"max_leverage": 2
},
{
"lower_bound": "10000000",
"max_leverage": 1
}
],
"symbol": "HYPE-USD"
}
]
}Returns the complete exchange configuration for each instrument — symbol, category, leverage and risk tiers, precision, order size limits, funding interval — plus
New instruments appear automatically as Polymarket lists them — poll this endpoint (or watch
first_seen, the timestamp we first observed the listing.
Query parameters
| Parameter | Description |
|---|---|
category | Filter to one category: crypto, index, commodity, equity |
perps_tickers on the WebSocket for unfamiliar ids) to pick up new listings.⌘I

