spotMeta | Hyperliquid Info API
Info API
spotMeta | Hyperliquid Info API
Hyperliquid spotMeta: fetch the spot universe metadata and full token configuration without live market context.
POST
spotMeta | Hyperliquid Info API
Credit Cost
1 per call
Processing
Realtime
type: "spotMeta" is used to fetch the spot universe metadata and full token configuration without live market context.
- Wire-equal to
POST api.hyperliquid.xyz/infowith{"type": "spotMeta"}. - Use spotMetaAndAssetCtxs when you also need live per-pair mark price, mid, and day volume.
- For the perpetuals equivalent, use meta.
universe) and the full token registry (tokens) with each token’s decimals, on-chain identifier, and linked HyperEVM contract. Carries no live market data, so it is cheap to cache and changes only when new tokens or pairs are listed.
Endpoint
Request
Always
"spotMeta".Example
Response
A single JSON object with two arrays:tokens (the token registry) and universe (the tradeable pairs that reference those tokens by index).
tokens[]
Token symbol - e.g.
"USDC", "PURR".Number of decimals used for order size precision.
Number of decimals in the token’s native wei representation.
Token index.
universe[].tokens references tokens by this value.Hyperliquid on-chain token identifier.
Whether the token is a canonical (core) Hyperliquid token.
Linked HyperEVM contract, or
null if the token is not bridged. Carries address and evm_extra_wei_decimals (the wei-decimal offset between the spot token and its EVM representation).Human-readable token name, or
null when not set.Share of trading fees routed to the token deployer (decimal string).
universe[]
Pair symbol - e.g.
"PURR/USDC". Non-canonical pairs use the @<index> form (e.g. "@1").Two-element
[base, quote] array of token indices into tokens.Pair index. Used as the spot asset identifier in other endpoints and streams.
Whether the pair is a canonical Hyperliquid market.
Related endpoints
spotMetaAndAssetCtxs
fetch the spot universe metadata, token configuration, and live market data in a single call.
batchSpotClearinghouseState
fetch spot account balances for up to 50 wallets in a single request.
meta
fetch the perpetuals universe metadata without live market context.
metaAndAssetCtxs
fetch the full Hyperliquid perpetuals market universe with live per-asset trading context.