Skip to content
Alchemy Logo

Outcome metadata

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

Returns registered outcome-market specifications and questions.

Available now. This read is served at the interim endpoint today.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects outcomeMeta.
{
  "type": "outcomeMeta"
}

FieldTypeDescription
outcomes[]arrayRegistered outcome-market specifications.
outcomes[].outcomeintegerNumeric identifier for the outcome market.
outcomes[].namestringDisplay name for the outcome market.
outcomes[].descriptionstringMachine-readable attributes that define the market.
outcomes[].sideSpecs[]arrayPermitted outcome sides for this market.
outcomes[].sideSpecs[].namestringDisplay label for an allowed outcome side.
outcomes[].quoteTokenstringObserved quote-token identifier, for example USDC.
outcomes[].venuestringObserved venue identifier, for example out; semantics are unconfirmed.
outcomes[].deployerFeeScalestringReturned deployer-fee scale value; semantics are unconfirmed.
questions[]arrayQuestion records associated with outcome markets.
deployersarrayAddresses registered to deploy outcome markets.
feeScaleintegerFee-scale setting used for outcome-market fees.

{
  "outcomes": [
    {
      "outcome": 1209,
      "name": "template:priceTouch",
      "description": "perp:HYPE|priceDescription:HYPE-USDC perp mark |seconds:1|target:100|time:20261001-0000",
      "sideSpecs": [{ "name": "template:Yes" }, { "name": "template:No" }],
      "quoteToken": "USDC",
      "venue": "out",
      "deployerFeeScale": "1.0"
    }
  ],
  "questions": [],
  "deployers": [],
  "feeScale": 0
}
Was this page helpful?