# Quotient Price Outlooks API

> Quotient Price Outlooks API is a paid API for AI agents from quotient-api-gateway.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns calibrated multi-scenario price outlooks for equities, crypto, and commodities, grouped by settlement source and time horizon, with a whole-curve directional label.

## Facts

- Endpoint: GET https://quotient-api-gateway.onrender.com/api/v1/price-outlooks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quotient-price-outlooks-api-eb3929e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DDAS5DXMimCn_-8pyeozM

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 quotient-price-outlooks-api-eb3929e1
```

Example prompt: What are Quotient's five calibrated price scenarios for Bitcoin right now, grouped by settlement source, and which horizon is nearest to open?

## When to prefer this

Use this endpoint when you need Quotient's full multi-horizon, multi-scenario price outlook for a specific asset — especially when you want the five calibrated scenarios, the directional whole-curve label, and settlement-source grouping. Prefer over sibling endpoints when the goal is price forecasting rather than prediction market probabilities or position tracking.

## Known failure modes

- Invalid or unsupported asset ticker returns empty or error response
- Unsupported asset_class value may return no results
- If no open horizons exist for the queried asset, the horizon marker may be absent
- Render.com cold-start latency may cause slow initial response
- Payment not processed (x402 payment required) returns 402 error

## How this service works

Use this endpoint to read calibrated asset price outlooks across equities, crypto, and commodities, grouped by settlement source and horizon. Each returns five scenarios plus a labeled whole-curve directional take. The nearest still-open horizon is marked without hiding neutral views. A PriceSignal is a separate current execution call and appears only on its exact Hyperliquid group.

## Output

A structured response containing five price scenarios per open horizon, a whole-curve directional label, the nearest still-open horizon flagged, and results grouped by settlement source (e.g. Hyperliquid). PriceSignal entries appear only under their exact Hyperliquid group and represent current execution calls.

## 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": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "anchor": {
       "type": "string"
      },
      "asset_class": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quotient-price-outlooks-api-eb3929e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quotient-api-gateway.onrender.com](https://www.zero.xyz/host/quotient-api-gateway.onrender.com/llms.txt)
