Skip to content
Alchemy Logo

Outcome templates

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

Returns registered outcome templates for HIP-4 deployment planning.

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

POST /{apiKey}/info

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

FieldTypeDescription
[]arrayOutcome-template entries.
[].idstringTemplate identifier, for example binaryPrice.
[].roleobjectRole configuration for the template.
[].role.standaloneOutcomeobjectObserved role configuration for a standalone outcome.
[].role.standaloneOutcome.sideNamesarraySide names in the observed standalone-outcome role configuration.
[].namestringHuman-readable label shown for the template.
[].descriptionstringHuman-readable explanation of the template's purpose.
[].keywordsarraySearch terms associated with the template.

[
  {
    "id": "binaryPrice",
    "role": {
      "standaloneOutcome": {
        "sideNames": ["Yes", "No"]
      }
    },
    "name": "{perp} above {threshold} at {time}?",
    "description": "The market resolves to Yes if the {perp} price is above {threshold} at {time}..."
  }
]

The 2026-09-02 capture returned seven templates on mainnet. validatorL1Votes records registerTemplate actions through which templates are registered in validator governance. For deployment context, see Deploying Hyperliquid markets.

Was this page helpful?