Skip to main content
GET
/
v3
/
perps
/
positions
/
large
Large positions
curl --request GET \
  --url https://api.polynode.dev/v3/perps/positions/large \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.polynode.dev/v3/perps/positions/large"

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/positions/large', 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/positions/large",
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/positions/large"

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/positions/large")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.polynode.dev/v3/perps/positions/large")

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": [
    {
      "address": "0x4f78dcb560f85bb028d6b75467c4bcb6412f8731",
      "as_of": 1783602532386,
      "instrument_id": 1,
      "notional": "1004045.393600",
      "side": "short",
      "size": "-133.91200",
      "symbol": "SP500-USD",
      "unrealized_pnl": "-2324.0915037805232000"
    },
    {
      "address": "0x2e4f2c311efbb8ab3adb9f7b7667af92e8a2af96",
      "as_of": 1783602083934,
      "instrument_id": 1,
      "notional": "1003911.481600",
      "side": "long",
      "size": "133.91200",
      "symbol": "SP500-USD",
      "unrealized_pnl": "2324.0915037805232000"
    },
    {
      "address": "0xece7144d08695fee681496a5de501a0faa6c05ec",
      "as_of": 1783602083934,
      "instrument_id": 1,
      "notional": "1002539.192360",
      "side": "short",
      "size": "-133.72895",
      "symbol": "SP500-USD",
      "unrealized_pnl": "-7024.165515422452030000000004"
    }
  ]
}
A live feed of the biggest open perps positions across every tracked account, sorted by notional. Set the floor with ?min_notional= (USD, default 10,000), narrow to one market with ?instrument=, and cap the count with ?limit=. Each row is that account’s current position for an instrument — address, side, size, notional, and unrealized PnL — drawn from its latest snapshot (as_of). Use it to watch where the size is concentrated right now.

Authorizations

x-api-key
string
header
required

Query Parameters

min_notional
number

Minimum position notional in USD (default 10000)

instrument
string

Restrict to one instrument

limit
integer

Max rows (default 100)

Response

200 - application/json

Success