# AnswerPool SEC Insider Transactions

> AnswerPool SEC Insider Transactions is a paid API for AI agents from answerpool.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Returns parsed Form 4/5 insider transaction lines for a given issuer, including date, transaction code, shares, price, USD value, security type, post-holdings, owner role, and Rule 10b5-1 flag.

## Facts

- Endpoint: POST https://answerpool.io/v1/sec/insider/transactions
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-sec-insider-transactions-c6dc60ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tZVYFV-9TpsipoU1R7V-t

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability answerpool-sec-insider-transactions-c6dc60ce -d '<json body>'
```

Example prompt: Pull all insider transactions for Jefferies Financial Group (ticker JEF) since August 1, 2026 — I want to see the date, transaction code, shares, price, USD value, and whether any were under a Rule 10b5-1 plan, including derivatives.

## When to prefer this

Use this endpoint when you need structured, pre-parsed insider transaction data from SEC Form 4/5 filings for a specific issuer without writing your own EDGAR XML parser. It is faster and cheaper than fetching and parsing raw ownershipDocument XML per filing, and includes computed fields like USD value and role flags. Prefer this over a generic EDGAR full-text search when you specifically need transaction-level detail (price, shares, code, 10b5-1) rather than filing metadata alone.

## Known failure modes

- Unknown or invalid ticker/CIK returns empty transaction list
- Date range too broad may result in large payload or timeout
- No transactions found in the requested window returns count:0
- Malformed since parameter returns 400 or empty result
- Ticker not mapped to CIK may return no results — prefer CIK for accuracy
- Rate limiting or payment failure returns 402 or 429

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

Returns a JSON object with a list of parsed insider transaction records for the requested issuer, each containing: transaction date, SEC transaction code (e.g. P for purchase, S for sale), number of shares, price per share, total USD value, security name, post-transaction share holdings, owner name and CIK, officer title, director/officer/10% owner role flags, Rule 10b5-1 plan flag, derivative flag, accession number, and a direct link to the SEC filing. Also returns metadata: as-of timestamp, since-filter used, transaction count, and index start time.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-08-31T14:00:00Z",
  "count": 1,
  "since": "2026-08-01T00:00:00",
  "transactions": [
   {
    "cik": "0000096223",
    "code": "P",
    "date": "2026-08-28",
    "price": 50,
    "shares": 30000,
    "ticker": "JEF",
    "company": "JEFFERIES FINANCIAL GROUP INC.",
    "filed_at": "2026-08-28T21:53:58",
    "security": "Common Stock",
    "accession": "0001214659-26-011100",
    "owner_cik": "0001211677",
    "value_usd": 1500000,
    "derivative": false,
    "filing_url": "https://www.sec.gov/Archives/edgar/data/96223/000121465926011100-index.htm",
    "is_officer": true,
    "owner_name": "HANDLER RICHARD B",
    "is_director": true,
    "post_shares": 100000,
    "rule_10b5_1": false,
    "officer_title": "CEO",
    "acquired_disposed": "A",
    "is_ten_percent_owner": false
   }
  ],
  "index_started_at": "2026-08-27T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-insider-transactions-c6dc60ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
