# Institutional Ownership Intelligence — The Stall (IntuiTek)

> Institutional Ownership Intelligence — The Stall (IntuiTek) 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).

Returns institutional ownership data for a US equity ticker, including top fund holders with shares/value, aggregate breakdown, and float concentration metrics.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/institutional-ownership-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/institutional-ownership-intelligence-the-stall-intuitek-8bdf1654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F6tr_gMWxq8HQU0TvWGsD

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 institutional-ownership-intelligence-the-stall-intuitek-8bdf1654
```

Example prompt: Pull a full institutional ownership report for NVDA — give me the top 20 holders with their share counts and values, plus the overall breakdown of institutional versus insider ownership and float size.

## When to prefer this

Use this endpoint when you need structured institutional ownership data for a US-listed equity — particularly when you want fund-level detail (top holders, shares, values) alongside aggregate metrics (% institutional, % insider, float, concentration) without signing up for a brokerage data API or paying for a Bloomberg terminal. Ideal for investment research agents, equity screening workflows, and due-diligence automation that needs ownership context on demand with micropayment access (no API key required).

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Non-US equity tickers (e.g. foreign-listed stocks) may not be supported
- Limit parameter out of range (below 1 or above 30) returns a validation error
- Stale data possible if underlying data source has not recently refreshed holdings
- Payment failure on Base mainnet (insufficient USDC, wrong network) blocks the request
- Unknown mode enum value returns a validation error

## 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

Returns structured JSON with institutional ownership data for the requested ticker. In 'holders' mode: a ranked list of up to 30 institutional funds with shares held and USD position value. In 'summary' mode: aggregate metrics including percent institutional, percent insider, float size, and concentration score. In 'full' mode: both datasets combined in a single response.

## 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": {
      "mode": {
       "enum": [
        "holders",
        "summary",
        "full"
       ],
       "type": "string",
       "description": "'holders' (default) returns top institutional funds with shares and value. 'summary' returns aggregate breakdown: % institutional, % insider, float size, concentration. 'full' returns both in one call."
      },
      "limit": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Max number of institutional holders to return in holders/full mode (default 15, max 30)."
      },
      "ticker": {
       "type": "string",
       "description": "US equity ticker symbol (e.g. AAPL, TSLA, NVDA). Case-insensitive."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/institutional-ownership-intelligence-the-stall-intuitek-8bdf1654/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)
