# SEC Form 4 Recent Insider Trades Feed

> SEC Form 4 Recent Insider Trades Feed 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 live SEC Form 4 insider trade filings from the last 24 hours, including buy/sell details for corporate officers, directors, and 10% owners parsed directly from EDGAR.

## Facts

- Endpoint: GET https://joyful-charm-production-bf6d.up.railway.app/trades/recent
- 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-recent-insider-trades-feed-d3dbaf5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9WQ_OuMdotjQroJnv7vf-

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-recent-insider-trades-feed-d3dbaf5e
```

Example prompt: Pull the most recent SEC Form 4 insider trades filed in the last 24 hours — give me the first 50 results with ticker, insider name and role, trade type, shares, price, and total value.

## When to prefer this

Use this endpoint when you need a real-time, broad sweep of all insider trading activity across the entire market in the last 24 hours without filtering by ticker or insider. Prefer this over the per-ticker or per-insider endpoints when you want a market-wide view, want to detect emerging patterns, or are building a daily digest of insider activity. Choose this over the filtered search endpoint when no specific filter criteria are needed and you want the freshest filings as quickly as possible.

## Known failure modes

- No new filings in 24-hour window returns empty array
- limit parameter exceeding 200 may be capped or return an error
- Pagination offset beyond available records returns empty results
- EDGAR upstream delay may cause stale or missing filings
- Malformed query parameters may return 400 Bad Request

## How this service works

Live SEC Form 4 insider trades filed in the last 24 hours — real-time buy/sell transactions by corporate officers, directors, and 10% owners, parsed directly from EDGAR filings within minutes of publication. Each record includes ticker, company, insider name and role, trade type code, shares, price, total dollar value, and post-trade holdings. Returns JSON.

## Output

A JSON array of insider trade records parsed from EDGAR Form 4 filings within minutes of publication. Each record includes ticker symbol, company name, insider name, insider role (e.g. CEO, CFO, Director), trade type code (e.g. P for purchase, S for sale), number of shares, price per share, total dollar value of the transaction, and post-trade share holdings. 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-recent-insider-trades-feed-d3dbaf5e/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)
