📦 Datasets

Hyperliquid Misc Events

Exchange-consolidated stream of miscellaneous Hyperliquid events with raw JSON payloads.

Hyperliquid Misc Events

Overview

The Hyperliquid Misc Events data type provides exchange-level miscellaneous events from Hyperliquid L4. Rows carry event metadata and the original JSON payload as reported by the source stream.

[!NOTE]

This is an exchange-consolidated stream for HYPERLIQUIDL4. Files are not split by symbol.

File Organization

Hyperliquid Misc Events data is organized in the coinapi bucket using the structure below.

T-HLMISCEVENTS/
└── D-{YYYYMMDD | YYYYMMDDHH}/
    └── E-HYPERLIQUIDL4/
        └── *.csv.gz

Where:

  • T-HLMISCEVENTS: Indicates the data type (Hyperliquid Misc Events)
  • D-{YYYYMMDD | YYYYMMDDHH} defines the time partition:
    • YYYYMMDD in coinapi -> legacy daily partitions published before 2026-06-09
    • YYYYMMDDHH in coinapi -> hourly partitions for data published on or after 2026-06-09
  • E-HYPERLIQUIDL4: Hyperliquid L4 exchange identifier

File Format

Files are in CSV format, compressed with gzip. Each row represents one miscellaneous event.

Data Fields

Column NameTypeDescription
time_exchangedatetimeUTC timestamp of the event from the exchange stream.
time_coinapidatetimeUTC timestamp when CoinAPI received the event.
exchange_idstringExchange identifier.
block_numberintegerBlockchain block number associated with the event.
event_typestringExchange event type.
json_payloadstringRaw JSON payload returned by the exchange.

Example Data

time_exchange;time_coinapi;exchange_id;block_number;event_type;json_payload
2026-06-09T00:16:07.1280000;2026-06-09T00:16:07.4394421;HYPERLIQUIDL4;47261513;vaultTransfer;{"user":"0xabc","amount":"12500","asset":"USDC"}

Data Collection Process

  1. We subscribe to Hyperliquid L4 exchange-level raw event streams.
  2. Miscellaneous event payloads are normalized and serialized into CSV rows.
  3. Data is uploaded to the coinapi bucket as hourly partitions for data published on or after 2026-06-09. Legacy daily partitions published before that date remain in coinapi.

Corner Cases and Special Considerations

  1. json_payload is exchange-native and can contain nested objects or arrays.
  2. Event ordering should rely primarily on block_number, then timestamp fields.
  3. New event_type values can appear without schema changes.
Service StatusGitHub SDK