# SmartMoney SEC Form 4 Insider Transaction Details by Ticker

> SmartMoney SEC Form 4 Insider Transaction Details by Ticker 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 given ticker, including reporting owner, role, transaction code, shares, price, value, and filing date.

## Facts

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

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

Example prompt: Pull the detailed SEC Form 4 insider transaction rows for NVDA — I want to see each reporting owner, their role, transaction code, shares, price, and filing date, up to 100 records.

## When to prefer this

Use this endpoint when you need granular, row-level SEC Form 4 insider transaction data for a specific ticker — especially when you need transaction codes, exact share counts, per-share prices, and filing dates per reporting owner. Prefer this over the aggregated Form 4 endpoint when you need individual trade-level detail rather than rolled-up summaries per insider.

## Known failure modes

- Ticker symbol not tracked by SmartMoney universe — returns empty result or 404
- Invalid or malformed ticker symbol — returns validation error
- Limit parameter out of range (below 1 or above 500) — returns 400 error
- No Form 4 filings available for the given ticker — returns empty data set
- Payment not processed (x402 protocol failure) — request blocked before data is returned

## How this service works

Detailed issuer-side SEC Form 4 transaction rows for one tracked ticker, including reporting owner, role, transaction code, shares, price, value, and filing date.

## Output

An array of row-level SEC Form 4 transaction records for the requested ticker, each including the reporting owner's name, their role (e.g. officer, director), the transaction code (e.g. P for purchase, S for sale), number of shares, per-share price, total transaction value, and the SEC filing date.

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