# SqueezeOS FTD Series API – GME

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

Returns a time-series of Failure-to-Deliver (FTD) data for GME (GameStop) stock

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/ftd/series/GME
- Price: $0.02/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-series-api-gme-c8132973
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-K4gw0cRCIbhR8rtlkHFs

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-series-api-gme-c8132973
```

Example prompt: Pull the latest GME failure-to-deliver time series from SqueezeOS — give me the last 30 records so I can track any short squeeze signals.

## When to prefer this

Choose this endpoint when you specifically need Failure-to-Deliver time-series data for GME (GameStop) and want an agent-native, x402-payment-compatible API. Ideal for AI agents monitoring short squeeze conditions, meme stock analytics pipelines, or regulatory compliance research focused on GME. Prefer over general market data APIs when FTD-specific series data is the primary signal needed.

## Known failure modes

- No limit parameter returns default window which may be smaller than expected
- Symbol mismatch if query param conflicts with path — path param (GME) takes precedence
- Stale data if underlying SEC FTD source has not been updated recently
- Rate limiting or payment failure (x402) if USDC payment not properly submitted
- Empty result set if no FTD records exist in the requested window
- Service unavailability on Render free-tier cold starts causing timeout

## How this service works

SqueezeOS — Api Ftd Series Gme

## Output

A JSON array of time-series records containing Failure-to-Deliver data for GME, including fields such as settlement date, FTD share count, and potentially price data, covering a rolling window up to the specified limit.

## 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": {
      "limit": {
       "type": "string",
       "description": "Maximum records in rolling window"
      },
      "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-series-api-gme-c8132973/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)
