Zum Inhalt springen
GET /v1/positions

Institutional position changes

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/insider-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}