# SEC 13F Institutional Holdings by Ticker

> SEC 13F Institutional Holdings by Ticker is a paid API for AI agents from api.omninexu.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns top institutional holders (hedge funds and asset managers) for a US-listed stock, ranked by market value, sourced from real SEC 13F EDGAR filings.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/institutional
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-13f-institutional-holdings-by-ticker-e05b2a99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ctc9GqFPUUt5iv_4a7x-u

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-13f-institutional-holdings-by-ticker-e05b2a99
```

Example prompt: Pull the top institutional holders for NVDA from SEC 13F filings — I want to see which hedge funds and asset managers have the biggest positions ranked by market value.

## When to prefer this

Use this endpoint when you need to identify the largest institutional holders of a specific US-listed stock from real SEC 13F filings. Prefer this over general financial data APIs when you specifically want hedge fund and asset manager ownership data ranked by market value, or when tracking 'smart money' accumulation trends. For combined insider trading + institutional data in one call, consider the Smart Money Bundle sibling endpoint instead.

## Known failure modes

- Invalid or unrecognized ticker returns an error — use a valid US-listed symbol (e.g. AAPL, BRK.B)
- Ticker for a non-US-listed company may return no results or an error
- Newly listed stocks may have no 13F data yet if no filing period has elapsed
- Payment failure (402) if USDC balance is insufficient for the $0.03 per-call fee
- Rate limiting if too many calls are made in a short window

## How this service works

SEC 13F institutional holdings for any US-listed stock — top hedge fund and asset manager positions ranked by market value. Track whale accumulation, smart money moves, and fund portfolio changes. Real SEC EDGAR data, not mock.

## Output

A ranked list of institutional holders (hedge funds, asset managers) for the specified ticker, showing each institution's name, market value of their position, share count, and portfolio metadata — all sourced from real SEC EDGAR 13F filings.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "maxLength": 5,
       "minLength": 1,
       "description": "US stock ticker (AAPL, BRK.B, TSLA). Any US-listed company."
      }
     }
    }
   },
   "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/sec-13f-institutional-holdings-by-ticker-e05b2a99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.omninexu.com](https://www.zero.xyz/host/api.omninexu.com/llms.txt)
