Latest insider trades (SEC Form 4) for any US-listed company by stock ticker or CIK: who b
Latest insider trades (SEC Form 4) for any US-listed company by stock ticker or CIK: who bought or sold, their role (director, officer, 10% owner), the buy/sell/grant/exercise code, shares, price per share, total value, and shares held after. Resolves ticker to CIK via SEC's official index. Sourced live from data.sec.gov.
3000 (raw units)
price
7
calls / 30d
4
unique payers
2026-09-11
updated
Provider
edgar.apitoll.cloud · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x58BdAD5e654691aC5eD4631758f3d8DA00666B6c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7kPWiEbDXu33FomKG6mGa7R8HGSfUGFsAoKFZeBERJaH",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 10,
"ticker": "AAPL"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"form": "4",
"items": [
{
"accessionNumber": "0000320193-25-000071",
"filingDate": "2025-05-02",
"form": "4",
"reporter": {
"name": "COOK TIMOTHY D",
"relationship": {
"isDirector": false,
"isOfficer": true,
"isTenPercentOwner": false,
"officerTitle": "Chief Executive Officer"
}
},
"transactions": [
{
"isDisposition": true,
"pricePerShare": 211.5,
"securityTitle": "Common Stock",
"shares": 100000,
"sharesOwnedAfter": 3280000,
"totalValue": 21150000,
"transactionCode": "S",
"transactionDate": "2025-04-30",
"transactionType": "sell"
}
]
}
],
"resolved": {
"cik": "0000320193",
"companyName": "Apple Inc.",
"ticker": "AAPL"
},
"source": {
"name": "data.sec.gov"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"cik": {
"description": "SEC CIK (1-10 digits). XOR with ticker.",
"pattern": "^\\d{1,10}$",
"type": "string"
},
"limit": {
"description": "Max Form 4 filings to parse (ceiling 25).",
"maximum": 25,
"minimum": 1,
"type": "integer"
},
"since": {
"description": "Inclusive lower bound on filingDate (YYYY-MM-DD), within 5 years.",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"ticker": {
"description": "Stock ticker, case-insensitive. XOR with cik.",
"pattern": "^[A-Za-z.\\-]{1,10}$",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"count": {
"type": "integer"
},
"form": {
"enum": [
"4"
],
"type": "string"
},
"items": {
"items": {
"type": "object"
},
"type": "array"
},
"resolved": {
"type": "object"
},
"source": {
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://edgar.apitoll.cloud/v1/edgar/insider" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://edgar.apitoll.cloud/v1/edgar/insider");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://edgar.apitoll.cloud/v1/edgar/insider")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/425.json, and this resource appears in /discovery/resources and /discovery/search.