# Smartmoney Global SEC Form 4 Insider Activity Feed

> Smartmoney Global SEC Form 4 Insider Activity Feed is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns global issuer-side SEC Form 4 insider trading activity across Smartmoney's tracked stock universe, supporting filters for latest activity, focused buys/sells, active tickers, active insiders, time window, view type, and result limit.

## Facts

- Endpoint: GET https://x402.smartmoney.market/insiders
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-smartmoney-market-55103ec9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rTZ6ZI3nVZ8Xc2fqCWyrz

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 x402-smartmoney-market-55103ec9
```

Example prompt: Show me the most active insider buying and selling across all tracked stocks over the last 30 days, limiting results to the top 50 — I want to see which tickers and insiders are showing the most Form 4 activity right now.

## When to prefer this

Use this endpoint when you need a broad market-wide view of insider Form 4 activity rather than data for a single ticker. Ideal for screening which stocks or insiders are most active, identifying focused buy/sell clusters, or building a watchlist based on recent Form 4 filings across the full tracked universe.

## Known failure modes

- Ticker not in Smartmoney's tracked universe — no data returned; use /api/insider-tracked-stocks?q={symbol} to precheck coverage
- days parameter out of range (must be 1–365) — validation error
- limit parameter out of range (must be 1–500) — validation error
- Payment not received or x402 protocol failure — 402 response, no data returned
- No insider activity in the requested window — empty result set

## How this service works

Global company insider SEC Form 4 activity across Smartmoney's selected stock universe. Supports fixed cached windows days=7|30|90, view=overview|latest|buys|sells|ten_pct, and limit.

## Output

A structured feed of global SEC Form 4 insider trading activity across Smartmoney's tracked universe, including active tickers, active insiders, focused buy/sell events, and filing details, filtered by the requested time window and view type, up to the specified limit.

## 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": {
      "days": {
       "enum": [
        7,
        30,
        90
       ],
       "type": "integer",
       "description": "Fixed cached lookback window. Supported values: 7, 30, or 90."
      },
      "view": {
       "enum": [
        "overview",
        "latest",
        "buys",
        "sells",
        "ten_pct"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-smartmoney-market-55103ec9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.smartmoney.market](https://www.zero.xyz/host/x402.smartmoney.market/llms.txt)
