Use this to scan Quotient's published prediction-market signals on Polymarket In
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://quotient-api-gateway.onrender.com/api/v1/signals
| Category | Market data |
|---|---|
| Provider host | quotient-api-gateway.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 105 from 14 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 528 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"exclude_drawdown_risk": true,
"min_capacity_usd": 500,
"min_conviction": 2,
"side": "NO",
"status": "active"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"exclude_crash_risk": {
"default": false,
"type": "boolean"
},
"exclude_drawdown_risk": {
"default": false,
"type": "boolean"
},
"market": {
"type": "string"
},
"min_capacity_usd": {
"minimum": 0,
"type": "number"
},
"min_conviction": {
"maximum": 3,
"minimum": 1,
"type": "integer"
},
"side": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"status": {
"type": "string"
},
"topic": {
"type": "string"
},
"venue": {
"description": "Prediction-market venue key: polymarket (Polymarket International), polymarket_us (Polymarket US), kalshi, or limitless.",
"enum": [
"polymarket",
"polymarket_us",
"kalshi",
"limitless"
],
"type": "string"
},
"window": {
"maximum": 168,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}