Skip to content

bullpen hyperliquid fills

Last updated: July 13, 2026

Show historical fills for an address

Usage

bullpen hyperliquid fills [OPTIONS]

Live Help

Show historical fills for an address

Usage: bullpen hyperliquid fills [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 fill 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 fill rows by the symbol after the dex prefix

      --start <START>
          Start of the fills history window in Unix milliseconds. Defaults to 30 days ago

      --end <END>
          End of the fills history window in Unix milliseconds. Defaults to the current time

      --aggregate-by-time
          Aggregate fills by time when supported by the server

      --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 recent Hyperliquid fills for an address
  bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111

  # Query a specific fills window in Unix milliseconds
  bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111 --start 1700000000000 --end 1700086400000

  # Export historical Hyperliquid fills as JSON
  bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111 --output json

  # Filter HIP-3 fills by DEX and market symbol
  bullpen hyperliquid fills --dex xyz --symbol SPCX --output json

Example Commands

bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111
bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111 --start 1700000000000 --end 1700086400000
bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111 --output json
bullpen hyperliquid fills --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
aggregate_by_time boolean no Whether the request asked Hyperliquid to aggregate fills by time
start_time integer yes Start of the fills window in Unix milliseconds
end_time integer yes End of the fills window in Unix milliseconds
fills array no Historical fills returned by Hyperliquid
fills[].coin string no Market symbol
fills[].side string no Hyperliquid side label
fills[].px string/decimal no Fill price
fills[].sz string/decimal no Filled size
fills[].closed_pnl string/decimal no Closed PnL attributed to the fill
fills[].fee string/decimal yes Fee amount when Hyperliquid returns one
fills[].fee_token string yes Fee token when Hyperliquid returns one
fills[].builder_fee string/decimal yes Builder fee amount when Hyperliquid returns one
fills[].time_iso string no UTC rendering of the fill timestamp

Example

Example JSON output
bullpen hyperliquid fills --address 0x1111111111111111111111111111111111111111 --output json
{
  "address": "0x1111111111111111111111111111111111111111",
  "aggregate_by_time": false,
  "start_time": 1777328575000,
  "end_time": 1779920575000,
  "fills": [
    {
      "closed_pnl": "12.5",
      "coin": "BTC",
      "crossed": true,
      "dir": "Open Long",
      "fee": "1.23",
      "fee_token": "USDC",
      "builder_fee": "0.05",
      "hash": "0xfeedcafe",
      "oid": 123456789,
      "px": "65000",
      "side": "B",
      "start_position": "0.0",
      "sz": "0.01",
      "time": 1779920575000,
      "time_iso": "2026-07-13 13:42:55Z",
      "tid": 777
    }
  ]
}

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.