# 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.01/call, status unknown (last checked 2026-09-15).

Returns global issuer-side SEC Form 4 insider trading activity across Smartmoney's tracked stock universe, including latest transactions, focused buys/sells, active tickers, and active insiders.

## Facts

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

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-2997c559
```

Example prompt: Show me the most recent insider buying activity across all tracked stocks from the last 30 days, limited to the top 50 transactions — I want to see which insiders are making focused buys right now.

## When to prefer this

Use this endpoint when you need a broad, market-wide view of SEC Form 4 insider activity rather than insider data for a single ticker. It is ideal for screening which stocks or insiders are most active, spotting emerging insider buying/selling trends, or building a watchlist based on insider conviction signals. Prefer sibling single-ticker endpoints when you already have a specific stock in mind.

## Known failure modes

- Invalid 'days' value outside 1–365 range returns validation error
- Invalid 'limit' value outside 1–500 range returns validation error
- Unsupported 'view' string returns empty or error response
- Payment not completed (402) blocks access to data
- No insider activity found for the specified window returns empty result set

## How this service works

Global issuer-side SEC Form 4 activity across Smartmoney's selected stock universe. Supports latest activity, focused buys/sells, active tickers, active insiders, days, view, and limit.

## Output

Returns a structured list of SEC Form 4 insider transactions across Smartmoney's stock universe, which may include fields such as reporting owner, ticker, transaction type (buy/sell), transaction date, shares, price, and filing date. May also include aggregated views of active tickers or active insiders depending on the 'view' parameter.

## 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": {
       "type": "integer",
       "maximum": 365,
       "minimum": 1
      },
      "view": {
       "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-2997c559/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)
