Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.allium.so/llms.txt

Use this file to discover all available pages before exploring further.

The hyperliquid.assets.summaries_latest view contains the most recent account summary snapshot per (user, dex) on Hyperliquid.

Table Columns

Identifiers

Column NameDescription
userUser wallet address.
dexDEX deployer address associated with the user.
last_activity_timestampTimestamp of the most recent snapshot.
block_dateDate of the most recent snapshot.
_created_atRow creation timestamp.
_updated_atRow last update timestamp.

Agent

Column NameDescription
agent_addressAgent address associated with the user.
agent_valid_untilAgent validity timestamp.

Cross Margin

Column NameDescription
cross_maintenance_margin_usedCross maintenance margin used.
cross_margin_summary_account_valueCross margin summary account value.
cross_margin_summary_total_margin_usedCross margin summary total margin used.
cross_margin_summary_total_natl_posCross margin summary total notional position.
cross_margin_summary_total_raw_usdCross margin summary total raw USD.

Margin Summary

Column NameDescription
margin_summary_account_valueMargin summary account value.
margin_summary_total_margin_usedMargin summary total margin used.
margin_summary_total_natl_posMargin summary total notional position.
margin_summary_total_raw_usdMargin summary total raw USD.

Account & Vault

Column NameDescription
withdrawableWithdrawable amount.
net_depositNet deposit amount.
is_vaultTrue when the user is a vault.
total_vault_equityTotal vault equity.
pnlPnL of the user at the snapshot timestamp.

Staking

Column NameDescription
staking_delegatedAmount of staked tokens delegated.
staking_undelegatedAmount of staked tokens undelegated.
staking_total_pending_withdrawalTotal amount of staked tokens pending withdrawal.

Sample Query

SELECT
  user,
  margin_summary_account_value,
  withdrawable,
  pnl,
  last_activity_timestamp
FROM hyperliquid.assets.summaries_latest
WHERE user = '<user_address_to_search>'
LIMIT 100