bullpen hyperliquid order-history¶
Last updated: July 13, 2026
Show historical orders for an address
Usage¶
Live Help¶
Show historical orders for an address
Usage: bullpen hyperliquid order-history [OPTIONS]
Options:
--address <ADDRESS>
Ethereum address to query (defaults to authenticated account)
--no-multi-wallet-warning
Suppress the table-mode warning shown when multiple EVM wallet accounts exist
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--dex <DEX>
HIP-3 DEX id. Filters historical rows by their dex:symbol coin prefix
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--config <CONFIG>
Path to a custom config.toml file (overrides $BULLPEN_CONFIG and the default location).
Explicit --config and BULLPEN_CONFIG paths fail closed: if the file is missing, the CLI exits validation instead of silently loading defaults. Credentials still resolve via BULLPEN_HOME, so set BULLPEN_HOME too when isolating a session.
--symbol <SYMBOL>
HIP-3 market symbol. Filters historical rows by the symbol after the dex prefix
--read-only
Enable read-only mode: blocks all mutating commands
--non-interactive
Suppress interactive prompts; does NOT imply --yes for money-moving commands
[env: BULLPEN_NON_INTERACTIVE=]
-h, --help
Print help (see a summary with '-h')
EXAMPLES:
# Show historical Hyperliquid orders for an address
bullpen hyperliquid order-history --address 0x1111111111111111111111111111111111111111
# Export historical Hyperliquid orders as JSON
bullpen hyperliquid order-history --address 0x1111111111111111111111111111111111111111 --output json
# Filter HIP-3 historical orders by DEX and market symbol
bullpen hyperliquid order-history --dex xyz --symbol SPCX --output json
Example Commands¶
bullpen hyperliquid order-history --address 0x1111111111111111111111111111111111111111
bullpen hyperliquid order-history --address 0x1111111111111111111111111111111111111111 --output json
bullpen hyperliquid order-history --dex xyz --symbol SPCX --output json
JSON Output¶
Contract: JSON Output Contract.
Successful output is a single JSON document. The shape below is representative for this command family; commands may add fields without breaking the shared contract.
Schema version: 1 when a command emits schema_version; otherwise treat the current command shape as contract version 1.
Top-level Keys¶
| key | type | nullable | notes |
|---|---|---|---|
address |
string | no | Hyperliquid account address queried |
orders |
array | no | Historical order records returned by Hyperliquid |
orders[].order |
object | no | Rich frontend order payload |
orders[].status |
string | no | Final or current order status label |
orders[].status_timestamp |
integer | no | Status timestamp in Unix milliseconds |
orders[].status_timestamp_iso |
string | no | UTC rendering of the status timestamp |
Example¶
Example JSON output
bullpen hyperliquid order-history --address 0x1111111111111111111111111111111111111111 --output json
{
"address": "0x1111111111111111111111111111111111111111",
"orders": [
{
"order": {
"coin": "BTC",
"is_position_tpsl": false,
"is_trigger": false,
"limit_px": "65000",
"oid": 123456789,
"order_type": "Limit",
"orig_sz": "0.01",
"reduce_only": false,
"side": "B",
"sz": "0.01",
"tif": "Gtc",
"timestamp": 1779920575000,
"timestamp_iso": "2026-07-13 13:42:55Z",
"trigger_condition": "N/A",
"trigger_px": "0"
},
"status": "filled",
"status_timestamp": 1779920575000,
"status_timestamp_iso": "2026-07-13 13:42:55Z"
}
]
}
Stability¶
Patch releases may add nullable or optional fields. Minor releases may add required fields or increment schema_version. Major releases may remove or rename fields.