📦 Datasets
Hyperliquid System Events
Exchange-consolidated Hyperliquid system events with block metadata and raw payloads.
Hyperliquid System Events
Overview
The Hyperliquid System Events data type provides exchange-level system events from Hyperliquid L4. Rows include event metadata and the original JSON payload emitted by the source stream.
[!NOTE]
This is an exchange-consolidated stream for
HYPERLIQUIDL4. Files are not split by symbol.
File Organization
Hyperliquid System Events data is organized in the coinapi bucket using the structure below.
T-HLSYSTEMEVENTS/
└── D-{YYYYMMDD | YYYYMMDDHH}/
└── E-HYPERLIQUIDL4/
└── *.csv.gzWhere:
T-HLSYSTEMEVENTS: Indicates the data type (Hyperliquid System Events)D-{YYYYMMDD | YYYYMMDDHH}defines the time partition:YYYYMMDDincoinapi-> legacy daily partitions published before 2026-06-09YYYYMMDDHHincoinapi-> 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 system event.
Data Fields
| Column Name | Type | Description |
|---|---|---|
| time_exchange | datetime | UTC timestamp of the event from the exchange stream. |
| time_coinapi | datetime | UTC timestamp when CoinAPI received the event. |
| exchange_id | string | Exchange identifier. |
| block_number | integer | Blockchain block number associated with the event. |
| event_type | string | System event type reported by the exchange. |
| json_payload | string | Raw JSON payload returned by the exchange. |
Example Data
time_exchange;time_coinapi;exchange_id;block_number;event_type;json_payload
2026-06-09T00:17:41.4000000;2026-06-09T00:17:41.7249815;HYPERLIQUIDL4;47261520;validatorSetChange;{"height":47261520,"validators":[{"id":"v1"}]}Data Collection Process
- We subscribe to Hyperliquid L4 system-level raw event streams.
- System event payloads are normalized and serialized into CSV rows.
- Data is uploaded to the
coinapibucket as hourly partitions for data published on or after 2026-06-09. Legacy daily partitions published before that date remain incoinapi.
Corner Cases and Special Considerations
json_payloadmay include deeply nested JSON objects.- Event ordering should rely primarily on
block_number, then timestamp fields. - System event taxonomies may expand over time with new
event_typevalues.