# Insider Trading Tracker

> Insider Trading Tracker is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves all SEC Form 4 insider trading filings (buys and sells) for a given public company ticker within a specified lookback period

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/insider-trading-tracker
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-trading-tracker-25cd227a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vx-sjDgjNfB-p_qDUyZi7

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 insider-trading-tracker-25cd227a -d '<json body>'
```

Example prompt: Pull all insider trades for NVDA over the last 90 days — I want to see who's been buying or selling and how much.

## When to prefer this

Use this endpoint when you need structured, transaction-level insider trading data from SEC Form 4 filings for a specific public company. It is ideal for investment research workflows, pre-trade due diligence, or monitoring executive sentiment. Prefer this over manual SEC EDGAR searches when you need machine-readable, agent-consumable output. Not suitable for aggregate market-wide insider screening across many tickers simultaneously.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty results or error
- days_back value out of range (less than 1 or greater than 365) rejected with validation error
- No filings found for the specified period returns an empty list
- Service unavailable or upstream SEC data feed timeout
- Rate limiting or payment failure at x402 layer

## How this service works

Insider Trading Tracker: Track insider buying and selling for any public company. Returns all Form 4 filings (insider trades) within the specified time period with transaction details.

## Output

Returns a list of SEC Form 4 filings for the specified ticker within the lookback window, including transaction details such as insider name, role, transaction type (buy/sell), number of shares, price per share, and transaction date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "title": "Ticker",
   "description": "Stock ticker",
   "json_schema_extra": {
    "example": "AAPL"
   }
  },
  "days_back": {
   "type": "integer",
   "title": "Days Back",
   "default": 90,
   "maximum": 365,
   "minimum": 1,
   "description": "Look back this many days for insider trades"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-trading-tracker-25cd227a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
