Docs

allFillsByTime - Global Fill History by Time

Retrieve global fills inside a bounded time window from the Dwellir Hyperliquid Index over /info or JSON-RPC.

Use allFillsByTime to scan indexed fills across users and markets inside a bounded time window.

Endpoints

REST-style Info API:

Text
POST https://api-hyperliquid-index.n.dwellir.com/YOUR_API_KEY/info

JSON-RPC:

Text
POST https://api-hyperliquid-index.n.dwellir.com/YOUR_API_KEY/jsonrpc

Parameters

FieldTypeRequiredDescription
typestringyesMust be allFillsByTime for /info.
startTimenumberyes, unless cursor is suppliedInclusive Unix timestamp in milliseconds. Skipped when cursor is supplied.
endTimenumbernoExclusive Unix timestamp in milliseconds.
cursorstringnoPagination cursor in time_txIndex format. Resumes after that (time, txIndex) pair.
limitnumbernoMaximum rows to return, capped at 2000.

Billing

Billed by returned fill objects

allFillsByTime responses are billed by the number of fill objects returned, not as one response per HTTP request. A response with 2,000 fills counts as 2,000 responses/API credits.

Requests that return an empty array are billed as 0 responses/API credits and do not count against usage. Error responses are not charged.

Cursor pagination

txIndex is the fill's block-local position in the node_fills_by_block event array. It is exposed as a stable fill pagination key, not as a replica_cmds-compatible action index.

REST-style Example

Bash
curl -X POST "https://api-hyperliquid-index.n.dwellir.com/YOUR_API_KEY/info" \
  -H "content-type: application/json" \
  -d '{
  "type": "allFillsByTime",
  "startTime": 1753606200000,
  "endTime": 1753606300000,
  "limit": 100
}'

JSON-RPC Example

Bash
curl -X POST "https://api-hyperliquid-index.n.dwellir.com/YOUR_API_KEY/jsonrpc" \
  -H "content-type: application/json" \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "allFillsByTime",
  "params": {
    "startTime": 1753606200000,
    "endTime": 1753606300000,
    "limit": 100
  }
}'

Response

REST /info responses return an array directly. JSON-RPC responses return the same array under result. Empty matches return []; they are not errors.