# Insider Trading Intelligence — SEC Form 4 Feed

> Insider Trading Intelligence — SEC Form 4 Feed is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.021/call, status unknown (last checked 2026-09-14).

Fetches SEC Form 4 insider trading data for a specific stock ticker or returns a market-wide feed of recent open-market insider purchases above a dollar threshold

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/insider-trading-intel
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-trading-intelligence-sec-form-4-feed-bb5295a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_clRl-TWcrNL_mtgV-PCXH

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 insider-trading-intelligence-sec-form-4-feed-bb5295a0
```

Example prompt: Pull all insider trades for TSLA from the last 14 days using Form 4 data — show me up to 15 results so I can see who's been buying or selling.

## When to prefer this

Use this endpoint when you need real SEC Form 4 insider trading data either for a specific company or as a market-wide open-market purchase feed, without needing an account or API key. It's ideal for investment research agents, stock screening workflows, or any scenario requiring quick access to insider sentiment signals. Prefer it over scrapers when you need structured, filtered data with dollar-value thresholds applied server-side.

## Known failure modes

- Missing required 'ticker' when mode is get_insider_trades — returns validation error
- Invalid ticker symbol — may return empty results or not-found error
- days parameter out of 1–30 range — returns validation error
- limit parameter out of 1–20 range — returns validation error
- mode enum value not recognized — returns validation error
- SEC EDGAR data delay — very recent filings (same day) may not yet appear
- Payment failure — x402 USDC payment on Base mainnet not completed, returns 402

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

A list of insider trade records derived from SEC Form 4 filings, including the insider's name, their role, the company ticker, transaction date, number of shares, transaction type (open-market purchase vs. other), and approximate dollar value. In market-wide mode the feed is pre-filtered for open-market buys above the specified minimum USD threshold.

## 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": [
      "mode"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "default": 7,
       "description": "Days back to search (1–30). Default 7."
      },
      "mode": {
       "enum": [
        "get_insider_trades",
        "recent_insider_buys"
       ],
       "type": "string",
       "description": "get_insider_trades: Form 4s for a specific company (requires ticker). recent_insider_buys: market-wide open-market purchase feed (no ticker needed)."
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "description": "Max results to return (1–20). Default 10."
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol (e.g. AAPL, MSFT). Required for get_insider_trades."
      },
      "min_usd": {
       "type": "number",
       "default": 50000,
       "description": "Minimum open-market purchase value in USD for recent_insider_buys mode. Default 50000 ($50k). Use 100000 for high-conviction only."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-trading-intelligence-sec-form-4-feed-bb5295a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
