Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/insider-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/insider-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/insider-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/insider-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Look up a stock by its ticker (symbol=AAPL). Insider transactions are corporate insiders trading their own shares; institutional holdings are funds and firms holding the stock. Values and share counts are numbers.",
        "source": "Nasdaq public company feed (api.nasdaq.com/api/company, live)",
        "service": "insider-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/insider": "Recent insider transactions and buy/sell summary (symbol=AAPL).",
            "GET /v1/positions": "Institutional position changes — increased, decreased, new, sold out (symbol=AAPL).",
            "GET /v1/institutional": "Institutional ownership and largest holders (symbol=AAPL)."
        },
        "description": "Live US insider and institutional ownership data from Nasdaq — the 'who owns and who is trading' view of a stock. insider = recent insider transactions (the insider, their relation, date, buy/sell, shares, price, value and resulting holding) plus the 3-month and 12-month open-market buy/sell summary; institutional = the institutional ownership picture (percent of shares held by institutions, total holdings value, largest holders with position size, change and market value); positions = the institutional position-change breakdown (how many holders increased, decreased, opened new or sold out, and the shares involved). Live, no key, nothing stored. Distinct from the price-quote, movers and earnings APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:31.453Z",
        "request_id": "eccd1a67-ec85-4b85-aed3-05af434c3629"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}