# SqueezeOS Quick Quote — Single Symbol Live Price

> SqueezeOS Quick Quote — Single Symbol Live Price is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the fastest-available live price and volume reading for a single US equity ticker symbol.

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/quick/quote/AAPL
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-quick-quote-single-symbol-live-price-63bb71d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wep69x6j1dGSs0-4YQKNG

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-quick-quote-single-symbol-live-price-63bb71d9
```

Example prompt: What's the current live price and volume for AAPL right now? Just the fastest single quote you can get.

## When to prefer this

Choose this endpoint when you need the single fastest live price snapshot for one US equity symbol and latency is the top priority. It is ideal for real-time trade decisions, portfolio checks, or price triggers. Prefer it over broader market snapshot endpoints when you only need one ticker and want minimal overhead.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty response
- Market closed hours may return last known price rather than live trade
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Render.com cold-start latency if the service has been idle

## How this service works

Stock quote API for AI agents — get a live/latest US equity price and volume reading for one ticker from the first available real provider.

## Output

A JSON object containing the fastest-available live price and volume reading for the requested ticker symbol, sourced from the SqueezeOS independent market data feed.

## 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",
       "pattern": "^[A-Z0-9.]{1,10}$",
       "description": "Ticker symbol mirrored from the URL path for Bazaar discovery Search intents: stock quote api, stock quote, market quote api, equity price, latest stock price, ticker quote."
      }
     },
     "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-quick-quote-single-symbol-live-price-63bb71d9/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)
