GET
/api/v1/markets/{slug}/intelligence
Full intelligence on a market
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| slug | path, required | string | Market slug identifier |
| venue | query | "polymarket" | "polymarket_us" | "kalshi" | "limitless" | Optional prediction-market venue filter. Omit it on catalog/feed routes to include every covered venue. On legacy slug or condition-ID lookups, omission retains the Polymarket namespace; prefer marketKey for collision-safe cross-venue lookup. |
Response fields
| Field | Type | Meaning |
|---|---|---|
| venue | "polymarket" | "polymarket_us" | "kalshi" | "limitless" | Prediction-market venue key: polymarket (Polymarket International), polymarket_us (Polymarket US), kalshi, or limitless. The WTI oil signal and its Hyperliquid mark are exposed separately by /api/v1/signals/oil. |
| nativeMarketId | string | |
| nativeEventId | string | |
| seriesTicker | string | |
| marketKey | string | |
| slug | string | |
| marketUrl | string | Connector-owned user-navigation URL. Never sourced from sourceUrl. |
| sourceUrl | string | Connector provenance/API source URL; not a navigation fallback. |
| question | string | |
| end_date | string | When this market closes/resolves. Null if no end date is set. |
| quotient_odds | number | Q's forecast probability (0-1), always expressed as yes odds |
| market_odds | number | Market yes odds at time of Q's forecast (0-1) |
| inDispute | boolean | Whether the source venue currently reports a dispute or challenged settlement state. Legacy Polymarket rows map their UMA dispute state here. |
| clarifications | string | Rules clarifications for the market, if provided |
| bluf | string | Bottom-line-up-front summary |
| forecast | CompactForecast | |
| last_updated | string | When Q's most recent forecast was created |
| volume_24h | number | Nullable venue-reported 24-hour activity where available; cadence and units can differ by venue. |
| quotientUrl | string | Canonical Quotient app page URL for this market |
| polymarketUrl | string | Legacy Polymarket navigation alias. Populated only for Polymarket International rows and null for Polymarket US, Kalshi, and Limitless; use marketUrl for venue-neutral navigation. |
| key_drivers | KeyDriver[] | |
| signals | SignalItem[] | Up to 10 correlated articles, newest source publication first |
| sentiment | Sentiment | Percentage breakdown of source-read directions; pct_neutral includes correlations whose direction is unclassified/null |
| source_reads_updated_at | string | Publication/ingestion time of the newest returned article |
| relationships | RelationshipsEnvelope | Bounded, non-recursive graph references. Each category publishes at most 50 lightweight refs. These refs contain no forecast probability, venue odds, aggregate asset probability, or inferred causal AFFECTS edge. |
Billing and limits
Calls are billed to prepaid credits, or per call over x402. The price above is the reference price; the 402 challenge returned at request time is what a call actually costs.
One request may be in flight at a time, and request starts must be at least one second apart. A rejected 429 is not billed. See rate limits.
curl
curl -H "x-quotient-api-key: qt_…" \
"https://quotient-api-gateway.onrender.com/api/v1/markets/<slug>/intelligence"Run sends this request with preset parameters on Quotient’s demo key. Your credits are not spent.
200 · application/json
{
"venue": "polymarket",
"nativeMarketId": "123456",
"nativeEventId": "98765",
"seriesTicker": null,
"marketKey": "polymarket:123456",
"slug": "fed-rate-cut-june-2026",
"marketUrl": "https://polymarket.com/event/fed-rate-cut-june-2026",
"sourceUrl": "https://gamma-api.polymarket.com/markets/123456",
"question": "Will the Fed cut rates by June 2026?",
"end_date": "2026-06-30T00:00:00Z",
"quotient_odds": 0.34,
"market_odds": 0.46,
"inDispute": false,
"clarifications": "Rate cut markets resolve based on the upper bound of the target range.",
"bluf": "Persistent inflation data makes a June cut unlikely.",
"last_updated": "2026-03-05T14:30:00Z",
"volume_24h": 182400,
"quotientUrl": "https://app.quotient.social/market/polymarket%3A123456",
"polymarketUrl": "https://polymarket.com/event/fed-rate-cut-june-2026",
"key_drivers": [
{
"factor": "CPI re-acceleration in February print",
"direction": "against",
"impact": "critical",
"citation": "Bureau of Labor Statistics CPI Report, March 2026"
}
],
"signals": [
{
"id": "https://example.com/march-cpi",
"title": "March CPI Report Shows Re-acceleration",
"comment": "CPI re-acceleration and hawkish Fed minutes suggest rate cuts are unlikely near-term.",
"direction": null,
"url": "https://example.com/march-cpi",
"source": "Example News",
"published_at": "2026-03-05T13:45:00Z",
"correlated_at": "2026-03-05T14:25:00Z",
"confidence": "high",
"evidence_quote": "Inflation re-accelerated in the March release."
}
],
"sentiment": {
"pct_bullish": 20,
"pct_bearish": 70,
"pct_neutral": 10
},
"source_reads_updated_at": "2026-03-05T14:25:00Z"
}