Skip to main content
GET
/
v2
/
insider
curl
curl "https://api.noxstock.com/v2/insider?symbol=AAPL&limit=10" \
  -H "X-API-Key: $NOXSTOCK_API_KEY"
{ "data": { "as_of": "2026-06-05T06:45:45Z", "cache_age_seconds": 27207, "freshness": "end_of_day", "market_status": "open", "recent_transactions": [ { "accession": "0001140361-26-023363", "filing_date": "2026-05-29", "insider_name": "Arthur D Levinson", "insider_role": "Director", "price_per_share": 311.02, "shares": 50000, "shares_remaining": 3764576, "ten_b5_1": false, "transaction_code": "S", "transaction_date": "2026-05-27", "transaction_kind": "open_market_sale", "value_usd": 15551000 }, { "accession": "0001140361-26-023363", "filing_date": "2026-05-29", "insider_name": "Arthur D Levinson", "insider_role": "Director", "price_per_share": { "available": false, "reason": "gift_no_market_price" }, "shares": 65000, "shares_remaining": 3764576, "ten_b5_1": false, "transaction_code": "G", "transaction_date": "2026-05-27", "transaction_kind": "gift", "value_usd": { "available": false, "reason": "gift_no_market_price" } }, { "accession": "0001140361-26-020871", "filing_date": "2026-05-12", "insider_name": "Ben Borders", "insider_role": "Principal Accounting Officer", "price_per_share": 290, "shares": 1274, "shares_remaining": 38713, "ten_b5_1": false, "transaction_code": "S", "transaction_date": "2026-05-08", "transaction_kind": "open_market_sale", "value_usd": 369460 } ], "summary_90d": { "all_activity": { "net_shares_all_kinds": 25895, "transactions": 43, "transactions_by_kind": { "derivative_exercise": 22, "gift": 2, "open_market_sale": 13, "tax_withholding": 6 } }, "director_share_pct": 12, "market_activity": { "buy_count": 0, "net_direction": "selling", "net_shares_market_only": -397759, "net_value_usd": -111705105.08, "sell_count": 13 }, "notices": [ "recent_transactions_limited_to_10" ], "officer_share_pct": 42, "ten_b5_1_plan_ratio_pct": 0, "unique_insiders": 7 }, "symbol": "AAPL" } }

Authorizations

X-API-Key
string
header
required

noxstock API key from the dashboard. Keys start with nxs_ and are shown once when created.

Query Parameters

symbol
string
required

Ticker symbol. Case-insensitive; share-class dots are normalized to dashes (BRK.B == BRK-B). Returns SYMBOL_UNKNOWN when the symbol is outside the supported universe.

Example:

"AAPL"

limit
integer | null

Maximum number of rows to return. Bounded by the endpoint-specific minimum / maximum constraints documented in the parameter schema.

Required range: 1 <= x <= 200
Example:

10

Response

Success envelope: { "data": ... }.

data
InsiderData · object
required

The endpoint payload. Present on every 2xx response; never null.