# Insider Radar 13F Institutional Holdings Rollup

> Insider Radar 13F Institutional Holdings Rollup is a paid API for AI agents from insider-radar-agent.insider-radar-agent.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a ranked rollup of 13F institutional holdings: top-held stock names, filer roster, and per-ticker holder counts across the top 300 tickers

## Facts

- Endpoint: GET https://insider-radar-agent.insider-radar-agent.workers.dev/v1/smart_holdings
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-radar-13f-institutional-holdings-rollup-fb33a669
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-iR2QzyAQ02_g5dU909Tc

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-radar-13f-institutional-holdings-rollup-fb33a669
```

Example prompt: Pull the top 13F institutional holdings rollup from Insider Radar — show me the most widely held tickers, the filer roster, and holder counts, limited to the top 50 results.

## When to prefer this

Use this endpoint when you need a pre-aggregated, ranked rollup of institutional 13F holdings rather than per-filing or per-fund detail. Ideal for quickly identifying the most institutionally popular tickers, scanning the full filer roster, or checking holder counts across the top 300 names without parsing raw SEC EDGAR data yourself. Prefer this over direct SEC data sources when you need fast, structured, ready-to-use institutional sentiment signals.

## Known failure modes

- Stale data flag set to true if underlying 13F data has not been refreshed recently
- Sample flag set to true if serving demo/partial data rather than full dataset
- Limit parameter exceeding 1000 returns validation error
- Network or upstream data provider unavailability may cause timeout or empty response
- Data may lag official SEC 13F filing deadlines by weeks given regulatory reporting cadence

## How this service works

13F institutional holdings rollup: top-held names, filer roster, per-ticker holder counts (top 300)

## Output

Returns a structured data object containing: a ranked list of top-held ticker names (up to top 300, optionally truncated by limit), a roster of institutional 13F filers, per-ticker institutional holder counts, and metadata fields including data age in seconds, generated_at timestamp, stale and sample flags, product name, and disclaimer text.

## 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": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 1000,
       "minimum": 1,
       "description": "Optional: truncate top-level array fields in data (ranked rows, headlines, …) to at most N items."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "description": "13F institutional holdings rollup: top-held names, filer roster, per-ticker holder counts (top 300)"
      },
      "stale": {
       "type": "boolean"
      },
      "sample": {
       "type": "boolean"
      },
      "product": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "age_seconds": {
       "type": "number"
      },
      "generated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-radar-13f-institutional-holdings-rollup-fb33a669/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from insider-radar-agent.insider-radar-agent.workers.dev](https://www.zero.xyz/host/insider-radar-agent.insider-radar-agent.workers.dev/llms.txt)
