# SEC Form 4 Insider Trading History by Ticker

> SEC Form 4 Insider Trading History by Ticker is a paid API for AI agents from joyful-charm-production-bf6d.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the complete SEC Form 4 insider trading history for a specific stock ticker, listing every officer, director, and 10%-owner buy and sell on record, newest first.

## Facts

- Endpoint: GET https://joyful-charm-production-bf6d.up.railway.app/trades/ticker/AAPL
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-form-4-insider-trading-history-by-ticker-42ff1dda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fYHty9Tjlp39Ps7Uq9BjI

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 sec-form-4-insider-trading-history-by-ticker-42ff1dda
```

Example prompt: Pull up the full SEC Form 4 insider trading history for NVDA — I want to see every officer and director buy and sell on record, up to 200 trades, so I can gauge insider sentiment.

## When to prefer this

Use this endpoint when you need comprehensive insider trading history for a single specific stock ticker and want all historical Form 4 records (not just recent 24h). Prefer this over the recent-trades or filtered-search endpoints when you want the full longitudinal record for one equity to assess insider sentiment trends over time.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or 404
- Ticker with no Form 4 filings on record returns an empty array
- Exceeding max limit of 200 returns a validation error
- Service downtime on Railway hosting returns 5xx error
- Malformed ticker path parameter may return 400 bad request

## How this service works

Full SEC Form 4 insider-trading history for one stock ticker (path param, e.g. /trades/ticker/NVDA) — every officer/director/10%-owner buy and sell on record, newest first, with insider name, role, trade type, shares, price, and total value. Ideal for gauging insider sentiment on a specific equity. Returns JSON.

## Output

A JSON array of SEC Form 4 trade records for the specified ticker, sorted newest first, each containing insider name, role (e.g. CEO, Director, 10%-owner), trade type (buy/sell), number of shares, price per share, total value, and filing date. Supports pagination via limit (default 50, max 200) and offset parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string",
       "description": "Max results (default 50, max 200)"
      },
      "offset": {
       "type": "string",
       "description": "Pagination offset"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-form-4-insider-trading-history-by-ticker-42ff1dda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from joyful-charm-production-bf6d.up.railway.app](https://www.zero.xyz/host/joyful-charm-production-bf6d.up.railway.app/llms.txt)
