# Quotient Prediction Market Trade Signals Feed

> Quotient Prediction Market Trade Signals Feed 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-15).

Returns Quotient's published trade signals for prediction markets, including side (YES/NO), entry odds, conviction tier, spread vs venue, convergence upside in cents, and capacity in USD, sorted newest first.

## Facts

- Endpoint: GET https://quotient-api-gateway.onrender.com/api/v1/signals
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quotient-prediction-market-trade-signals-feed-2f59b561
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wTXE0piIXtDYlX6DNXRUV

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-prediction-market-trade-signals-feed-2f59b561
```

Example prompt: Pull Quotient's latest prediction market trade signals — show me the YES-side ones with high conviction and at least $500 in capacity available on Polymarket or Kalshi.

## When to prefer this

Use this endpoint when you need a full list of all currently published Quotient trade signals across prediction market venues — ideal for scanning the entire signal book, building dashboards, or filtering by side, conviction, and capacity. Prefer the single-best-signal endpoint if you only need the top idea right now, or the market-search endpoint if you want to find markets by theme rather than by signal status.

## Known failure modes

- No signals available if Quotient has no current active research for requested filters
- Empty result set when filtering by side/conviction/capacity returns no matches
- Payment failure if x402 USDC payment of $0.006667 is not processed correctly
- Service unavailability due to Render.com cold starts causing slow initial response
- Stale signals if market conditions have changed since signal publication

## How this service works

Use this to scan Quotient's published prediction-market signals on Polymarket International, Polymarket US, Kalshi, and Limitless: side, entry YES price, latest Q probability and thesis, conviction, the forecast_status gauge with its standing adverse move, upside to Q, and capacity — one signal per market. A signal is active or retired; a missing live quote drops a row from the feed, and a caution/warning forecast_status marks an adverse move; the row remains listed.

## Output

A list of trade signals, each containing the market identifier, recommended side (YES/NO), suggested entry odds, conviction tier, spread versus venue price, convergence upside in cents, available capacity in USD, signal status, and timestamp — ordered newest first.

## 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": {
      "side": {
       "enum": [
        "YES",
        "NO"
       ],
       "type": "string"
      },
      "topic": {
       "type": "string"
      },
      "venue": {
       "enum": [
        "polymarket",
        "polymarket_us",
        "kalshi",
        "limitless"
       ],
       "type": "string",
       "description": "Prediction-market venue key: polymarket (Polymarket International), polymarket_us (Polymarket US), kalshi, or limitless."
      },
      "market": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "window": {
       "type": "integer",
       "maximum": 168,
       "minimum": 1
      },
      "min_conviction": {
       "type": "integer",
       "maximum": 3,
       "minimum": 1
      },
      "min_capacity_usd": {
       "type": "number",
       "minimum": 0
      },
      "exclude_crash_risk": {
       "type": "boolean",
       "default": false
      },
      "exclude_drawdown_risk": {
       "type": "boolean",
       "default": false
      }
     },
     "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-prediction-market-trade-signals-feed-2f59b561/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)
