# SqueezeOS IAM Full Resolution — BUY/SELL/HOLD Oracle

> SqueezeOS IAM Full Resolution — BUY/SELL/HOLD Oracle 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-15).

Returns a full investment action resolution (BUY/SELL/HOLD) with rationale, vehicle, invalidation level, review trigger, obligation pressure, and system stress score for a given stock ticker.

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/iam/AAPL
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-iam-full-resolution-buy-sell-hold-oracle-7f61cd06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4GimScE64yx1LzZtu8J7F

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-iam-full-resolution-buy-sell-hold-oracle-7f61cd06
```

Example prompt: Run a full IAM resolution on AAPL — I need the BUY/SELL/HOLD verdict, rationale, trade vehicle, invalidation level, and the current system stress score.

## When to prefer this

Choose this endpoint when you need a fully synthesized, multi-layer trading decision (not just raw price data) for a single ticker, including rationale, invalidation, and system-level stress context. It is distinct from simple quote or screener APIs because it combines an obligation committee consensus, a truth layer, and an action resolution oracle into one verdict. Prefer it when an agent needs an opinionated, structured signal rather than raw market data.

## Known failure modes

- Invalid or unsupported ticker symbol — endpoint may return an error or empty response
- Render cold-start latency — the service may time out on first request after inactivity
- Payment not processed — x402 payment of $0.05 USDC required per call; missing payment returns 402
- Ticker not covered by the IAM system — some small-cap or OTC symbols may not be supported
- Stale data — market conditions may have changed since last model update

## How this service works

IAM Full Resolution — obligation committee + Truth Layer + Action Resolution Oracle. Returns BUY/SELL/HOLD, rationale, vehicle, invalidation, review trigger, obligation pressure, and total system stress. Internal parameters are redacted.

## Output

A JSON object containing: the action verdict (BUY, SELL, or HOLD), a rationale string explaining the decision, the recommended trade vehicle, the invalidation level (price or condition that negates the thesis), a review trigger (condition prompting reassessment), obligation pressure score, and a total system stress metric. Internal model parameters are redacted.

## 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",
       "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-iam-full-resolution-buy-sell-hold-oracle-7f61cd06/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)
