# AnswerPool SEC Insider Activity Summary

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

Returns a rolled-up summary of insider buying and selling activity for a single issuer over a chosen time window, including total buy/sell/net USD, filing count, distinct insider count, and largest transactions.

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/insider/summary
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-sec-insider-activity-summary-871eb54e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3OFqvEX2UhCFGsf7qJNG0

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-activity-summary-871eb54e
```

Example prompt: Give me the insider activity summary for Jefferies Financial Group (ticker JEF, CIK 0000096223) over the last 30 days — I want to see total buy and sell USD, how many insiders traded, and the biggest single purchase.

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.005) net-buying signal for a single issuer before committing to pulling full transaction-level insider data. It is ideal for screening or alerting workflows where you only need aggregate buy/sell/net totals, filing counts, and largest transaction sizes — not individual transaction lines. Prefer the AnswerPool Insider Screen endpoint if you need market-wide screening across multiple issuers or want to filter by transaction code, owner role, or minimum USD at the individual trade level.

## Known failure modes

- Unknown CIK or ticker returns an error or empty result
- Window_days parameter out of supported range causes validation error
- No insider activity in the window returns zero values for all monetary fields
- Rate limiting or payment failure (x402) if USDC micropayment is not properly handled
- Stale index data if filings were very recently submitted to EDGAR

## 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

A single JSON object containing the issuer's CIK, ticker, company name, as-of timestamp, window length in days, number of filings, number of distinct insiders, aggregate buy USD, aggregate sell USD, net USD (buy minus sell), largest single buy USD, and largest single sale USD. Useful as a lightweight net-buying signal before fetching full transaction-level detail.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000096223",
  "as_of": "2026-08-31T14:00:00Z",
  "ticker": "JEF",
  "buy_usd": 4500000,
  "company": "JEFFERIES FINANCIAL GROUP INC.",
  "filings": 3,
  "net_usd": 4500000,
  "sell_usd": 0,
  "window_days": 30,
  "largest_buy_usd": 1500000,
  "index_started_at": "2026-08-27T00:00:00Z",
  "largest_sale_usd": 0,
  "distinct_insiders": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-insider-activity-summary-871eb54e/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)
