# SEC Form 4 Insider Trades by Person Name

> SEC Form 4 Insider Trades by Person Name 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-14).

Returns all SEC Form 4 insider trading records for a specific corporate executive or director, matched by name substring across all companies they report for.

## Facts

- Endpoint: GET https://joyful-charm-production-bf6d.up.railway.app/trades/insider/cook
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-form-4-insider-trades-by-person-name-5e49fccd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qkzfCFrdh2qf2pjA0xniC

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-trades-by-person-name-5e49fccd
```

Example prompt: Pull up all SEC Form 4 insider trades filed by Tim Cook — I want to see every company he's reported buying or selling at, with share counts, prices, and trade values.

## When to prefer this

Use this endpoint when you need to track a specific named individual's insider trading activity across all companies, rather than trades for a single ticker. Prefer this over the ticker-based endpoint when your research is person-centric (e.g. following a CEO across multiple roles or companies). Use the filtered search endpoint instead if you want to combine role, company, and person filters simultaneously.

## Known failure modes

- Name substring matches no insider — returns empty array
- Ambiguous name substring matches multiple insiders — may return mixed results
- Pagination offset beyond available records — returns empty array
- Service unavailable or Railway hosting downtime — HTTP 5xx error
- Payment failure via x402 protocol — request rejected before processing

## How this service works

SEC Form 4 trades by a specific corporate insider, matched by name substring (path param, e.g. /trades/insider/musk) — track an executive's or director's personal buying and selling across all companies they report for. Returns JSON trade records with ticker, role, type, shares, price, and value.

## Output

Returns a JSON array of trade records, each containing the stock ticker, the insider's role (e.g. CEO, Director), trade type (buy/sell), number of shares, price per share, and total trade value, covering all companies the named insider has reported under SEC Form 4.

## 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-trades-by-person-name-5e49fccd/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)
