# Quotient Featured Trade Signal

> Quotient Featured Trade Signal is a paid API for AI agents from quotient-api-gateway.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns Quotient's single highest-conviction prediction-market trade signal right now, including side, entry odds, probability, conviction, convergence upside, capacity, and live venue odds.

## Facts

- Endpoint: GET https://quotient-api-gateway.onrender.com/api/v1/signals/featured
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quotient-featured-trade-signal-e91fcfa0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IFRHuXIzWtMwb8-RmkL41

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-featured-trade-signal-e91fcfa0
```

Example prompt: What's Quotient's single best prediction market trade signal right now — the one with the highest conviction — including the side, entry odds, their probability estimate, and live venue odds?

## When to prefer this

Use this endpoint when you want a single, curated best-idea trade signal rather than browsing all markets or running a search. It is the right choice for a daily briefing, a featured trade widget, or when a user wants one high-quality prediction-market idea without filtering noise. Prefer this over the full market browse or semantic search endpoints when the user asks for a top pick, featured bet, or Quotient's best edge today.

## Known failure modes

- No featured signal available if market coverage is thin or all signals are low-conviction
- Stale odds if venue data hasn't refreshed recently
- 402 Payment Required if x402 payment header is missing or insufficient
- Rate limiting or 503 if the Render.com hosted service is cold-starting
- Window parameter out of range (must be 1–168 hours) returns validation error

## How this service works

Use this when the user asks which prediction-market signal is currently designated as featured by Quotient. Returns its published side and lifecycle, forecast_status, entry and current fields, forecast context, capacity, and canonical market routing; it may be empty. The featured designation is a database field.

## Output

Returns a single featured trade signal object containing: the recommended side (YES/NO), entry odds, Quotient's independent probability estimate, a conviction score, convergence upside (edge vs market odds), capacity, the underlying market metadata, and live odds and volume across venues (Polymarket, Kalshi, Limitless).

## 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": {
      "window": {
       "type": "integer",
       "default": 24,
       "maximum": 168,
       "minimum": 1
      }
     },
     "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-featured-trade-signal-e91fcfa0/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)
