# SqueezeOS Market Scanner Snapshot API

> SqueezeOS Market Scanner Snapshot API is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a live snapshot of the current configured-universe quote and options scan results when the scanner cache is ready.

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/scan
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-market-scanner-snapshot-api-bc6555fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PPzFJ_HVSFGz7M8SyRjBn

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-market-scanner-snapshot-api-bc6555fe
```

Example prompt: Pull the latest SqueezeOS market scanner snapshot right now — I want to see the current quote and options scan results for the configured universe.

## When to prefer this

Use this endpoint when you need a live, pre-computed snapshot of market quotes and options scan data across a curated universe without constructing your own scanner logic. It is best for agents that need periodic or on-demand market intelligence snapshots with minimal setup, especially when integrated into SqueezeOS-native workflows via x402 micropayments.

## Known failure modes

- Scanner cache not yet ready — endpoint may return an empty or pending state if the scan has not completed
- Service cold-start on Render hosting may cause initial latency or timeout
- 402 Payment Required if x402 micropayment header is not included or payment fails
- Malformed JSON response if scanner backend encounters an internal error
- Configured universe may be empty if no symbols have been set up

## How this service works

Market scanner API — return the current live configured-universe quote and options scan snapshot when the scanner cache is ready.

## Output

A JSON snapshot containing live quote data and options scan results for the configured market universe, sourced from the SqueezeOS scanner cache when it is ready and populated.

## 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-market-scanner-snapshot-api-bc6555fe/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)
