Docs

allFills - Global Fill History

Retrieve latest fills across indexed users and markets from the Dwellir Hyperliquid Index over /info or JSON-RPC.

Use allFills when you need a recent global sample of indexed Hyperliquid executions across users and markets. Every row includes user.

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 allFills for /info.
limitnumbernoMaximum rows to return, capped at 2000.

Billing

Billed by returned fill objects

allFills 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.

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": "allFills",
  "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": "allFills",
  "params": {
    "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.