Naar de inhoud
GET /v1/positions

Institutional position changes

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/insider-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/insider-api/v1/positions" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/insider-api/v1/positions", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/insider-api/v1/positions");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/insider-api/v1/positions",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "market": "US",
        "source": "Nasdaq",
        "symbol": "AAPL",
        "active_positions": [
            {
                "shares": 1751258188,
                "holders": 2695,
                "position": "Increased Positions"
            },
            {
                "shares": 206472855,
                "holders": 3328,
                "position": "Decreased Positions"
            },
            {
                "shares": 9056469644,
                "holders": 414,
                "position": "Held Positions"
            },
            {
                "shares": 11014200687,
                "holders": 6437,
                "position": "Total Institutional Shares"
            }
        ],
        "new_sold_out_positions": [
            {
                "shares": 1470873310,
                "holders": 202,
                "position": "New Positions"
            },
            {
                "shares": 7794943,
                "holders": 103,
                "position": "Sold Out Positions"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:30.955Z",
        "request_id": "69a69651-3598-49ec-827c-42b216ac7a1f"
    },
    "status": "ok",
    "message": "Positions retrieved successfully",
    "success": true
}