# SEC Form 4 Insider Trades Lookup

> SEC Form 4 Insider Trades Lookup is a paid API for AI agents from marketdata.use.x402atlas.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns SEC Form 4 insider transactions (director/officer buys and sells) for a US stock ticker, including shares, price, and transaction value.

## Facts

- Endpoint: GET https://marketdata.use.x402atlas.com/insider-trades
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-form-4-insider-trades-lookup-85a6f59d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LoVUUN88oBjteMf3D1MW7

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 sec-form-4-insider-trades-lookup-85a6f59d
```

Example prompt: Pull the most recent 50 insider trades for NVDA — I want to see which directors and officers have been buying or selling shares, along with the price and dollar value of each transaction.

## When to prefer this

Use this endpoint when you need SEC Form 4 insider transaction data for a specific US-listed stock, including shares traded, price, and dollar value, to assess smart-money signals. Prefer this over general news or sentiment endpoints when the user specifically wants to know what company insiders (directors, officers) are doing with their own shares.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result set
- Ticker for a non-US or OTC stock may not have SEC Form 4 data
- Limit parameter exceeding 10,000 may be rejected or capped
- No recent Form 4 filings available for thinly traded or small-cap stocks
- Payment failure (402) if USDC balance is insufficient

## How this service works

SEC Form 4 insider transactions for a US stock — director/officer buys and sells with shares, price and value, a smart-money signal.

## Output

A list of insider transaction records sourced from SEC Form 4 filings for the requested ticker, each including the insider's name and role, transaction type (buy/sell), number of shares, price per share, and total transaction value. Up to 100 results by default, configurable up to 10,000.

## 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": [
      "ticker"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50000,
       "minimum": 1,
       "description": "Max results returned"
      },
      "ticker": {
       "type": "string",
       "description": "US stock ticker, e.g. AAPL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "ticker",
      "count",
      "trades"
     ],
     "properties": {
      "count": {
       "type": "integer",
       "description": "Number of trades returned."
      },
      "ticker": {
       "type": "string",
       "description": "Echo of the requested ticker."
      },
      "trades": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "owner_name",
         "transaction_code",
         "shares"
        ],
        "properties": {
         "value": {
          "type": "number",
          "description": "shares * price_per_share."
         },
         "shares": {
          "type": "number"
         },
         "tickers": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "filing_url": {
          "type": "string",
          "format": "uri"
         },
         "is_officer": {
          "type": "boolean"
         },
         "owner_name": {
          "type": "string",
          "description": "Reporting insider's name."
         },
         "filing_date": {
          "type": "string",
          "format": "date"
         },
         "is_director": {
          "type": "boolean"
         },
         "issuer_name": {
          "type": "string"
         },
         "officer_title": {
          "type": "string"
         },
         "security_type": {
          "type": "string"
         },
         "security_title": {
          "type": "string"
         },
         "price_
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "ticker": "AAPL",
  "trades": [
   {
    "value": 10525000,
    "shares": 50000,
    "is_officer": true,
    "owner_name": "COOK TIMOTHY D",
    "filing_date": "2026-03-30",
    "issuer_name": "Apple Inc.",
    "officer_title": "CEO",
    "price_per_share": 210.5,
    "transaction_code": "S",
    "transaction_date": "2026-03-27",
    "acquired_disposed": "D",
    "shares_owned_after": 3200000
   }
  ],
  "queried_at": "2026-07-06T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-form-4-insider-trades-lookup-85a6f59d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from marketdata.use.x402atlas.com](https://www.zero.xyz/host/marketdata.use.x402atlas.com/llms.txt)
