Resolution

Get resolution criteria and status for a market

Get Resolution Info

GET

Get the resolution criteria, current status, and historical resolution data for a market.

GET /api/v1/markets/{id}/resolution

Path Parameters

ParameterTypeDescription
idstringMarket UUID

Example

curl -H "Authorization: Bearer or_live_xxx" \
  "https://api.tessradar.com/api/v1/markets/{id}/resolution"

Response (Open Market)

{
  "data": {
    "marketId": "e4ec57b5-94d1-4159-87c0-5bb6827928f7",
    "question": "Will Bitcoin reach $100k by end of 2026?",
    "status": "OPEN",
    "resolutionCriteria": {
      "description": "This market resolves YES if Bitcoin's price reaches or exceeds $100,000 USD on any major exchange (Coinbase, Binance, Kraken) at any point before December 31, 2026 11:59 PM ET.",
      "source": "CoinGecko price feed",
      "endDate": "2026-12-31T23:59:59.000Z"
    },
    "currentPrice": 0.652,
    "daysRemaining": 354
  }
}

Response (Resolved Market)

{
  "data": {
    "marketId": "resolved-market-uuid",
    "question": "Will the Fed cut rates in January 2026?",
    "status": "RESOLVED",
    "resolutionCriteria": {
      "description": "Resolves YES if the Federal Reserve announces a rate cut at the January 2026 FOMC meeting.",
      "source": "Federal Reserve official announcement",
      "endDate": "2026-01-31T00:00:00.000Z"
    },
    "resolution": {
      "outcome": "Yes",
      "resolvedAt": "2026-01-29T19:00:00.000Z",
      "finalPrice": 1.0,
      "evidence": "Fed announced 25bp rate cut on January 29, 2026"
    }
  }
}

Response Fields

FieldTypeDescription
statusstringOPEN, RESOLVED, or CLOSED
resolutionCriteriaobjectHow the market will resolve
resolutionobjectResolution details (only if resolved)
daysRemainingnumberDays until market end (if open)

Cost: 1 credit per request

On this page