# The Stall — Short Interest Intel

> The Stall — Short Interest Intel 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 short interest data for a given US equity ticker symbol, including metrics like short float percentage, short volume, and days-to-cover.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/short-interest-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/the-stall-short-interest-intel-0d82ab1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MOnaSe-ldWJ5gEJH4Q_bN

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-short-interest-intel-0d82ab1c
```

Example prompt: What's the current short interest data for GME — I want to know the short float percentage, days to cover, and any other short squeeze metrics you can find.

## When to prefer this

Choose this endpoint when you need short interest data for US equities without requiring API key registration or account setup. It is well-suited for autonomous AI agents that can handle x402 micropayments on Base mainnet. At $0.021 per call it is cost-effective for single-ticker lookups or small-batch research workflows. Prefer this over broker-specific APIs when you need a frictionless, pay-per-use model for short selling intelligence.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker exists but short interest data is unavailable for that security
- Payment failure via x402/USDC results in 402 response with no data
- Rate limiting or network errors on the Base mainnet payment rail
- Delisted or OTC tickers may not be supported

## 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 short interest intelligence for the requested US equity ticker, typically including short interest as a percentage of float, total shares short, short volume, days-to-cover ratio, and related short-selling metrics. Data is returned as structured JSON suitable for direct agent consumption.

## 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": {
      "ticker": {
       "type": "string",
       "description": "US equity ticker symbol (e.g. AAPL, TSLA, GME). Case-insensitive."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-short-interest-intel-0d82ab1c/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)
