# SqueezeOS FTD Ratio API — GME

> SqueezeOS FTD Ratio API — GME is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns the current Failure-to-Deliver (FTD) ratio data for GME (GameStop) stock from SEC regulatory filings

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/ftd/ratio/GME
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-ftd-ratio-api-gme-93d14cf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iQIMbQ39dMZkq5kKjTCdb

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 squeezeos-ftd-ratio-api-gme-93d14cf5
```

Example prompt: What's the current FTD ratio for GME right now? Pull the latest failure-to-deliver ratio data for GameStop so I can assess squeeze pressure.

## When to prefer this

Use this endpoint when you specifically need FTD ratio data for GME (GameStop) and want pre-processed, agent-ready output without having to parse raw SEC Reg SHO filings yourself. Ideal for trading agents, market intelligence workflows, or retail investor tools monitoring meme stock squeeze dynamics. Prefer this over raw SEC data sources when you need fast, structured JSON output at low cost.

## Known failure modes

- Data unavailable if SEC filing cycle hasn't updated — may return stale or empty data
- Service may be slow or unavailable as it runs on Render's free tier (cold starts possible)
- GME-specific endpoint hardcoded — cannot be used for other tickers without a different endpoint
- Network timeout if Render instance is sleeping (cold start latency)

## How this service works

SqueezeOS — Api Ftd Ratio Gme

## Output

A JSON object containing GameStop's (GME) current failure-to-deliver ratio metrics derived from SEC Reg SHO data, including the FTD ratio value and associated metadata useful for assessing short-side pressure and potential squeeze conditions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker mirrored from URL path"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/squeezeos-ftd-ratio-api-gme-93d14cf5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from squeezeos-api.onrender.com](https://www.zero.xyz/host/squeezeos-api.onrender.com/llms.txt)
