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
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Selects settledOutcome. |
outcome | integer | Yes | Outcome identifier. |
{
"type": "settledOutcome",
"outcome": 95
}| Field | Type | Description |
|---|---|---|
spec | object | Configuration that defined the settled outcome. |
spec.outcome | integer | Numeric identifier of the settled outcome market. |
spec.name | string | Displayed title of the settled outcome. |
spec.description | string | Human-readable wording of the outcome question. |
spec.sideSpecs[] | array | Allowed outcome sides at settlement. |
spec.sideSpecs[].name | string | Display label for that selectable side. |
spec.quoteToken | string | Token used to quote the outcome market. |
settleFraction | string | Settlement fraction. |
details | string | Supporting 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"
}