Skip to main content
GET
https://api.0xarchive.io
/
v1
/
hyperliquid
/
hip4
/
outcomes
/
{outcome_id}
Get HIP-4 outcome detail
curl --request GET \
  --url https://api.0xarchive.io/v1/hyperliquid/hip4/outcomes/{outcome_id} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "outcome_id": 0,
    "side_specs": [
      {
        "side": 0,
        "name": "Yes",
        "coin": "#0",
        "asset_id": 100000000
      }
    ],
    "is_settled": false,
    "name": "BTC ≥ 78213 by 2026-05-03 06:00 UTC",
    "description_raw": "class:priceBinary|underlying:BTC|expiry:20260503-0600|targetPrice:78213|period:1d",
    "class": "priceBinary",
    "underlying": "BTC",
    "expiry": "2026-05-03T06:00:00Z",
    "target_price": 78213,
    "period": "1d",
    "status": "live",
    "source_seen_at": "2026-05-02T20:25:00Z",
    "aggregated_oi": {
      "currency": "USDH",
      "side0_open_interest_contracts": 568048,
      "side1_open_interest_contracts": 568048,
      "outcome_display_open_interest_contracts": 1136096,
      "paired_set_supply_contracts": 568048,
      "side_supply_parity": true,
      "as_of": "2026-05-02T20:27:21Z",
      "side0_as_of": "2026-05-02T20:27:21Z",
      "side1_as_of": "2026-05-02T20:27:21Z"
    }
  },
  "meta": {
    "count": 123,
    "next_cursor": "<string>",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

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

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours at https://www.0xarchive.io/dashboard/

Path Parameters

outcome_id
integer<int64>
required

Numeric outcome ID (integer >= 0). Each outcome has two sides: side 0 (Yes) and side 1 (No).

Example:

0

Response

HIP-4 outcome detail (with aggregated_oi)

API response wrapping a single HIP-4 outcome aggregate (with aggregated_oi populated on the detail endpoint)

success
boolean
Example:

true

data
object

Per-outcome aggregate (both sides combined). Returned by /outcomes (list, without aggregated_oi) and /outcomes/{outcome_id} (detail, with aggregated_oi populated).

meta
object

Response metadata

Last modified on May 20, 2026