Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.allium.so/llms.txt

Use this file to discover all available pages before exploring further.

The hyperliquid.predictions.questions table contains every Hyperliquid HIP-4 question at the question grain. A question groups two or more named outcomes plus a fallback “Other” outcome. Recurring price-binary outcomes do not appear here.

Table Columns

Column NameDescription
projectAlways ‘hyperliquid’.
protocolAlways ‘hyperliquid_hip4’.
chainAlways ‘hyperliquid’.
question_idHIP-4 question ID. Primary key.
question_nameQuestion name from the HL API.
question_descriptionQuestion description from the HL API.
fallback_outcomeThe outcome ID representing the fallback / “Other” choice.
named_outcomesVARIANT array of outcome IDs grouped under this question.
settled_named_outcomesVARIANT array of outcome IDs that have settled (winning side).
named_outcomes_countCount of outcomes in named_outcomes.
is_settledTrue once the question has resolved.
settled_atSettlement timestamp (UTC). NULL while unsettled.
unique_idDeterministic unique identifier per row.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Sample Query

SELECT
  question_id,
  question_name,
  named_outcomes_count,
  is_settled,
  settled_at
FROM hyperliquid.predictions.questions
ORDER BY question_id DESC
LIMIT 100