Skip to main content
POST
/
api
/
v1
/
developer
/
trading
/
hyperliquid
/
info
/
events
Get user events
curl --request POST \
  --url https://api.allium.so/api/v1/developer/trading/hyperliquid/info/events \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "type": "userFunding",
  "user": "0x1cd84cc81f7ec9e14362681d606d00a526e388eb"
}
'
[
  {
    "time": 123,
    "hash": "<string>",
    "delta": {
      "type": "funding",
      "coin": "<string>",
      "usdc": "<string>",
      "szi": "<string>",
      "fundingRate": "<string>",
      "nSamples": 123
    }
  }
]
This endpoint provides funding payment history for Hyperliquid user addresses.
Drop-in ReplacementThis endpoint is a 1-1 replacement for the userFunding endpoint in Hyperliquid.

Authorizations

X-API-KEY
string
header
required

Body

application/json
type
enum<string>
required

Type of events to retrieve.

Available options:
userFunding,
userNonFundingLedgerUpdates
user
string
required

User's wallet address (hex string).

Response

Events retrieved successfully

time
integer<int64>

Event timestamp (Unix timestamp in milliseconds)

hash
string

Transaction hash

delta
object

Event payload. Structure varies by request type and event type.