Insider Screen API: Screen insider transactions market-wide — SEC Form 4
Screen insider transactions market-wide — filter by code, buy/sell direction, minimum USD, owner role and window; returns parsed lines ranked by value. Use instead of polling EDGAR and joining Form 4 XML across every filer.
$0.02 per call — pay with prepaid card credits (Authorization: Bearer ck_live_…, packs from $1) or with USDC over x402: call it, get 402 with the price, retry signed. Failed calls are never charged.
How do you call it?
GET /v1/sec/insider/screen — product id
sec_insider_screen. Over MCP, call answerpool_get with
product_id=sec_insider_screen.
curl "https://answerpool.io/v1/sec/insider/screen?direction=buy&min_value_usd=250000"
# with a prepaid credit key
curl -H "Authorization: Bearer ck_live_..." "https://answerpool.io/v1/sec/insider/screen?direction=buy&min_value_usd=250000"
Live call: https://answerpool.io/v1/sec/insider/screen?direction=buy&min_value_usd=250000 · JSON sample: /v1/samples/sec_insider_screen
What does the answer look like?
A representative response, the same static sample served at /v1/samples/sec_insider_screen.
as_of | 2026-08-31T14:00:00Z |
|---|---|
index_started_at | 2026-08-27T00:00:00Z |
since | 2026-08-24T00:00:00 |
count | 1 |
refresh_after | 2026-09-17T11:15:00.000Z |
transactions
| accession | filed_at | cik | ticker | company | owner_cik | owner_name | is_officer | is_director | is_ten_percent_owner | officer_title | rule_10b5_1 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0001214659-26-011100 | 2026-08-28T21:53:58 | 0000096223 | JEF | JEFFERIES FINANCIAL GROUP INC. | 0001211677 | HANDLER RICHARD B | true | true | false | CEO | false |
The same sample as raw JSON
{
"as_of": "2026-08-31T14:00:00Z",
"index_started_at": "2026-08-27T00:00:00Z",
"since": "2026-08-24T00:00:00",
"count": 1,
"transactions": [
{
"accession": "0001214659-26-011100",
"filed_at": "2026-08-28T21:53:58",
"cik": "0000096223",
"ticker": "JEF",
"company": "JEFFERIES FINANCIAL GROUP INC.",
"owner_cik": "0001211677",
"owner_name": "HANDLER RICHARD B",
"is_officer": true,
"is_director": true,
"is_ten_percent_owner": false,
"officer_title": "CEO",
"rule_10b5_1": false,
"derivative": false,
"date": "2026-08-28",
"code": "P",
"acquired_disposed": "A",
"shares": 30000,
"price": 50.0,
"value_usd": 1500000.0,
"security": "Common Stock",
"post_shares": 100000,
"filing_url": "https://www.sec.gov/Archives/edgar/data/96223/000121465926011100-index.htm"
}
],
"refresh_after": "2026-09-17T11:15:00.000Z"
}How fresh is it, and where does the data come from?
The fastest source behind this answer can change every 15 minutes, so every response carries a refresh_after timestamp — right now it would be 2026-09-17T11:15:00.000Z. Schedule the next call on that value rather than on a guess.
- SEC EDGAR (US federal public domain) — upstream:
https://efts.sec.gov
Method version 0.1.0 ·
serving cache 1 day ·
every response carries a result_id you can resolve at
/v1/provenance.
When should you use it?
Market-wide questions about insider activity with filters; the per-issuer view is cheaper when you know the company.
What you skip building
- market-wide EDGAR polling
- per-filing XML parsing
- role and size filtering code
When should you not use it?
History beyond our index window, or 10b5-1-only splits per issuer.
Where else can you find this?
- Catalog entry (JSON, free)
- OpenAPI schema — input and output types, prices, the 402 flow
- llms.txt — every product in one plain-text document