# SqueezeOS SEC Reg SHO Threshold Securities List API

> SqueezeOS SEC Reg SHO Threshold Securities List API 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 the current processed SEC Reg SHO threshold securities list from official regulatory data

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/ftd/threshold-list
- 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-sec-reg-sho-threshold-securities-list-api-d37a8125
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s6BWVvZyP7v5RJ5qSZKRh

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-sec-reg-sho-threshold-securities-list-api-d37a8125
```

Example prompt: Pull up the current SEC Reg SHO threshold securities list — I want to see which stocks are flagged for persistent fail-to-deliver issues right now.

## When to prefer this

Choose this endpoint when you need a ready-processed, agent-accessible version of the SEC Reg SHO threshold securities list without having to scrape or parse the raw SEC website. It is particularly useful for trading compliance checks, short-sale research, and FTD monitoring workflows where a clean JSON response is needed programmatically. It complements sibling FTD ratio and series endpoints on the same platform for deeper fail-to-deliver analysis.

## Known failure modes

- Stale data if regulatory source hasn't been updated yet for the trading day
- Service cold-start latency on Render free tier leading to timeouts
- Empty or partial list if SEC data feed is unavailable or delayed
- 402 Payment Required if x402 payment header is missing or invalid
- 500 error if upstream regulatory data source is temporarily unreachable

## How this service works

SEC Reg SHO threshold securities API — return the current processed threshold-security list from official regulatory data.

## Output

A JSON object containing the current processed SEC Reg SHO threshold securities list, including ticker symbols and associated regulatory data for securities that have exceeded the permitted fail-to-deliver thresholds under Reg SHO.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    }
   },
   "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-sec-reg-sho-threshold-securities-list-api-d37a8125/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)
