# x402.smartmoney.market Ticker Insider Activity

> x402.smartmoney.market Ticker Insider Activity 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 aggregated SEC Form 4 insider trading activity for a specific ticker, grouped by reporting owner with buy/sell counts, open-market transaction values, roles, and activity windows.

## Facts

- Endpoint: GET https://x402.smartmoney.market/ticker-insider
- 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-e77bd135
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n4KSoVlgIMV6wzFOL_lL2

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-e77bd135
```

Example prompt: Pull up the SEC Form 4 insider trading activity for NVDA — show me which insiders are buying or selling, their roles, and how much they've been transacting in open-market trades.

## When to prefer this

Use this endpoint when you need detailed, per-insider aggregated Form 4 SEC filing data for a specific ticker, including role breakdowns and open-market transaction values. Prefer this over global/universe-wide insider endpoints when the user has a specific stock in mind. It complements 13-F fund positioning and congressional trading endpoints on the same platform for a full smart-money picture.

## Known failure modes

- Ticker not in tracked coverage universe — agent should precheck with GET /api/insider-tracked-stocks?q={symbol} before paying
- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment failure via x402 protocol if USDC balance is insufficient
- Rate limiting or temporary service unavailability returning 5xx errors
- Ticker exists but has no recent Form 4 insider activity, resulting in an empty dataset

## How this service works

Aggregated company insider Form 4 activity for one selected tracked ticker, grouped by reporting owner with buy/sell counts, open-market value, roles, and activity windows. Precheck free coverage with GET /api/insider-tracked-stocks?q={symbol} before paying.

## Output

A structured response grouping insider trading activity for the requested ticker by reporting owner, including each insider's role (e.g. CEO, CFO, Director), number of buy and sell transactions, total open-market transaction values, and the date range of their activity window as reported via SEC Form 4 filings.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "AAPL"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    }
   },
   "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-e77bd135/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)
