Skip to content
Alchemy Logo

Settled outcome

This API is in private preview. Target October 2026; timing is subject to change.

Returns the specification and settlement details for one outcome identifier.

Coming with HyperCore. This read is documented but is not yet callable.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects settledOutcome.
outcomeintegerYesOutcome identifier.
{
  "type": "settledOutcome",
  "outcome": 95
}

FieldTypeDescription
specobjectConfiguration that defined the settled outcome.
spec.outcomeintegerNumeric identifier of the settled outcome market.
spec.namestringDisplayed title of the settled outcome.
spec.descriptionstringHuman-readable wording of the outcome question.
spec.sideSpecs[]arrayAllowed outcome sides at settlement.
spec.sideSpecs[].namestringDisplay label for that selectable side.
spec.quoteTokenstringToken used to quote the outcome market.
settleFractionstringSettlement fraction.
detailsstringSupporting information used for settlement.

{
  "spec": {
    "outcome": 95,
    "name": "Recurring",
    "description": "class:priceBinary|underlying:BTC|expiry:20260526-0600|targetPrice:77363|period:1d",
    "sideSpecs": [{ "name": "Yes" }, { "name": "No" }],
    "quoteToken": "USDC"
  },
  "settleFraction": "0.0",
  "details": "price:76876.9"
}
Was this page helpful?