# SqueezeOS Cascade Signal API

> SqueezeOS Cascade Signal API is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns the current position-management signal (ENTER, ADD, EXIT, STOP, or neutral Cascade state) for a given asset symbol.

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/cascade/signal
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-cascade-signal-api-2c091a2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BHCLD-Q8_ZMvv4WHKpt1L

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-cascade-signal-api-2c091a2c
```

Example prompt: What's the current Cascade signal for BTC — should I be entering, adding, exiting, or stopping my position?

## When to prefer this

Use this endpoint when you need a real-time, single-symbol position-management signal (ENTER, ADD, EXIT, STOP) from the SqueezeOS Cascade engine. Prefer it over generic market data APIs when you specifically need an actionable trading directive rather than raw price or volume data. It is best suited for automated agents managing active trading positions that need a clear, enumerated action signal per symbol.

## Known failure modes

- Missing or invalid 'symbol' query parameter returns an error
- Unsupported or unrecognized symbol may return no signal or an error
- Service unavailable if the Cascade engine backend is down (Render cold start latency possible)
- Payment failure (x402) if USDC balance is insufficient, preventing the response
- Rate limiting or quota exhaustion may result in 402 or 429 responses

## How this service works

Position-management signal API — return the current ENTER, ADD, EXIT, STOP, or neutral Cascade state for one symbol.

## Output

A JSON object containing the current Cascade position-management signal for the requested symbol, which is one of: ENTER, ADD, EXIT, STOP, or a neutral/no-signal state. The response indicates what action the live Cascade engine recommends for the given asset at query time.

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset symbol monitored by the live Cascade engine Search intents: position management signal api, enter exit signal api, cascade signal, trading signal api."
      }
     },
     "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-cascade-signal-api-2c091a2c/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)
