# The Stall — Institutional Ownership Lookup

> The Stall — Institutional Ownership Lookup 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-13).

Returns institutional ownership data for a given US equity ticker symbol, paid per-call in USDC via x402 protocol

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/institutional-ownership
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-institutional-ownership-lookup-6d8cd552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SpvyJo-1JCJS9N2jNS6Yp

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 the-stall-institutional-ownership-lookup-6d8cd552
```

Example prompt: Can you pull up the institutional ownership data for NVDA — I want to see which major institutions are holding it and what percentage they own?

## When to prefer this

Choose this endpoint when you need fast, pay-per-call institutional ownership data for US equities without setting up an account or API key. It is ideal for agents that need ad-hoc financial intelligence on a per-ticker basis, especially when embedding institutional ownership checks in automated investment research or portfolio analysis workflows. Prefer this over brokerage or Bloomberg APIs when you want frictionless micropayment access without subscription overhead.

## Known failure modes

- Invalid or non-US ticker symbol returns an error or empty result
- Ticker for a very small-cap or OTC stock may have no institutional ownership data
- Payment failure over x402/USDC results in 402 response and no data returned
- Data may lag behind most recent 13F filing cycle (typically quarterly)
- Rate limiting or network errors from the upstream data provider

## 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 institutional ownership details for the specified US equity ticker, typically including a list of institutional holders (funds, banks, ETF managers), their share counts, ownership percentages, and possibly filing dates from 13F or similar regulatory disclosures.

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "US equity ticker symbol (e.g. 'AAPL', 'MSFT', 'NVDA')."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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