# Insider & Institutional Data

> Insider & Institutional Data is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-14).

Returns named insider transactions, 6-month insider summary, top institutional holders with QoQ changes, and full ownership breakdown for a US stock ticker.

## Facts

- Endpoint: GET https://www.x402financialdata.com/insider-activity/:ticker
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-institutional-data-61931a6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8v28rgskq0mOcQIcfTXV8

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-institutional-data-61931a6a
```

Example prompt: Pull up the full insider and institutional ownership picture for NVDA — I want to see who's been buying, any cluster insider activity, and which institutions hold the most shares with their quarter-over-quarter changes.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call view of both insider transactions and institutional ownership for a US-listed stock — particularly useful for equity research conviction signals like cluster insider buying or institutional accumulation. Prefer over building separate SEC EDGAR + 13F scrapers when speed and cost efficiency matter.

## Known failure modes

- Invalid or unknown ticker symbol returns an error
- Ticker has no insider transaction data available (e.g. very small or foreign-listed companies)
- Yahoo Finance data temporarily unavailable causing upstream errors
- Payment not fulfilled resulting in 402 response
- Rate limiting or timeout on high-demand tickers

## How this service works

Who's actually buying and selling a US stock, in one call: named insider transactions (role, buy/sell/gift/award, shares, dollar value), a 6-month insider purchase/sale summary, top institutional (13F-style) holders with % held and quarter-over-quarter change, and the full insider/institutional ownership breakdown -- cluster insider buying and institutional accumulation are among the highest-conviction signals in equity research. From real Yahoo Finance data. $0.025/call.

## Output

Returns named insider transactions (role, transaction type, shares, dollar value), a 6-month insider purchase/sale summary, top institutional (13F-style) holders with percentage held and quarter-over-quarter change, and a full insider/institutional ownership breakdown for the requested ticker.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. AAPL, TSLA, MSFT"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-institutional-data-61931a6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
