List issuers where 3+ distinct officers or directors bought within a week — returns combin
List issuers where 3+ distinct officers or directors bought within a week — returns combined buy USD, insider count and names per issuer. A derived cluster signal no other API sells as one call; use as a high-conviction insider screen.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
answerpool.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 7
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-31T14:00:00Z",
"clusters": [
{
"buy_usd": 4500000,
"cik": "0000096223",
"company": "JEFFERIES FINANCIAL GROUP INC.",
"filings": 3,
"insider_names": [
"FRIEDMAN BRIAN P",
"HANDLER RICHARD B",
"OSBORNE MATT"
],
"insiders": 3,
"latest_at": "2026-08-28T21:53:58",
"ticker": "JEF"
}
],
"count": 1,
"index_started_at": "2026-08-27T00:00:00Z",
"window_days": 7
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"days": {
"default": 7,
"maximum": 30,
"minimum": 1,
"title": "Days",
"type": "integer"
},
"min_insiders": {
"default": 3,
"maximum": 10,
"minimum": 2,
"title": "Min Insiders",
"type": "integer"
}
},
"title": "ClustersIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"title": "As Of",
"type": "string"
},
"clusters": {
"items": {
"properties": {
"buy_usd": {
"title": "Buy Usd",
"type": "number"
},
"cik": {
"title": "Cik",
"type": "string"
},
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Company"
},
"filings": {
"title": "Filings",
"type": "integer"
},
"insider_names": {
"items": {
"type": "string"
},
"title": "Insider Names",
"type": "array"
},
"insiders": {
"title": "Insiders",
"type": "integer"
},
"latest_at": {
"title": "Latest At",
"type": "string"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ticker"
}
},
"required": [
"cik",
"ticker",
"company",
"insiders",
"insider_names",
"buy_usd",
"filings",
"latest_at"
],
"title": "ClusterRow",
"type": "object"
},
"title": "Clusters",
"type": "array"
},
"count": {
"title": "Count",
"type": "integer"
},
"disclaimer": {
"default": "Derived from public SEC EDGAR filings; not investment advice.",
"title": "Disclaimer",
"type": "string"
},
"index_started_at": {
"title": "Index Started At",
"type": "string"
},
"method_id": {
"default": "sec_events_rules_v1",
"title": "Method Id",
"type": "string"
},
"window_days": {
"title": "Window Days",
"type": "integer"
}
},
"required": [
"as_of",
"index_started_at",
"window_days",
"count",
"clusters"
],
"title": "ClustersOutput",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/sec/insider/clusters" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://answerpool.io/v1/sec/insider/clusters");
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://answerpool.io/v1/sec/insider/clusters")
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/7753.json, and this resource appears in /discovery/resources and /discovery/search.