# SmartMoney Ticker Insider Form 4 Transaction Rows

> SmartMoney Ticker Insider Form 4 Transaction Rows 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 detailed row-level SEC Form 4 insider transaction records for a specific ticker, including reporting owner, role, transaction code, shares, price, value, and filing date.

## Facts

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

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

Example prompt: Pull up the detailed Form 4 insider transaction rows for NVDA from SmartMoney — show me each trade with the reporting owner, their role, transaction code, shares, price, and filing date, up to 50 results.

## When to prefer this

Use this endpoint when you need row-level granularity of individual Form 4 insider transactions for a specific ticker — including exact shares, prices, and filing dates per trade. Prefer this over the aggregated insider summary endpoint when you want to inspect individual trades rather than rolled-up buy/sell counts. Best for equity research, compliance review, or building insider trading screens.

## Known failure modes

- Ticker not covered by SmartMoney's tracked universe — precheck with /api/insider-tracked-stocks before paying
- Invalid or missing symbol parameter returns an error
- Symbol typo or unsupported exchange results in empty or error response
- Payment of 0.01 USDC required per call; failure to pay returns 402
- limit parameter out of range (must be 1–500) causes validation error

## How this service works

Detailed company insider Form 4 transaction rows for one selected tracked ticker, including reporting owner, role, transaction code, shares, price, value, and filing date. Precheck free coverage with GET /api/insider-tracked-stocks?q={symbol} before paying.

## Output

A list of individual Form 4 transaction rows for the requested ticker, each containing the reporting owner's name, their role (e.g. CEO, director), the SEC transaction code (e.g. S for sale, P for purchase), number of shares, price per share, total transaction value, and the SEC filing date.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 50,
   "symbol": "AAPL"
  }
 }
}
```

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "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-d52bab01/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)
