GET

/api/v1/markets/{slug}/intelligence

Full intelligence on a market

Price $0.01 per callAuth x-quotient-api-key or x402Limit 1/s · 30/min · 5,000/day

Parameters

NameInTypeDescription
slugpath, requiredstringMarket slug identifier
venuequery"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

FieldTypeMeaning
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.
nativeMarketIdstring
nativeEventIdstring
seriesTickerstring
marketKeystring
slugstring
marketUrlstringConnector-owned user-navigation URL. Never sourced from sourceUrl.
sourceUrlstringConnector provenance/API source URL; not a navigation fallback.
questionstring
end_datestringWhen this market closes/resolves. Null if no end date is set.
quotient_oddsnumberQ's forecast probability (0-1), always expressed as yes odds
market_oddsnumberMarket yes odds at time of Q's forecast (0-1)
inDisputebooleanWhether the source venue currently reports a dispute or challenged settlement state. Legacy Polymarket rows map their UMA dispute state here.
clarificationsstringRules clarifications for the market, if provided
blufstringBottom-line-up-front summary
forecastCompactForecast
last_updatedstringWhen Q's most recent forecast was created
volume_24hnumberNullable venue-reported 24-hour activity where available; cadence and units can differ by venue.
quotientUrlstringCanonical Quotient app page URL for this market
polymarketUrlstringLegacy Polymarket navigation alias. Populated only for Polymarket International rows and null for Polymarket US, Kalshi, and Limitless; use marketUrl for venue-neutral navigation.
key_driversKeyDriver[]
signalsSignalItem[]Up to 10 correlated articles, newest source publication first
sentimentSentimentPercentage breakdown of source-read directions; pct_neutral includes correlations whose direction is unclassified/null
source_reads_updated_atstringPublication/ingestion time of the newest returned article
relationshipsRelationshipsEnvelopeBounded, 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"
}