info (alignedQuoteTokenInfo)
Hyperliquid node API
alignedQuoteTokenInfo | Hyperliquid info
deprecated
The info endpoint with type: “alignedQuoteTokenInfo” retrieves supply, rate, and pending payment information for an aligned quote token.
POST
info (alignedQuoteTokenInfo)
The
When the token is not an aligned quote asset:
info endpoint with type: "alignedQuoteTokenInfo" returned supply, rate, and pending payment information for an aligned quote token. Aligned quote tokens are HIP-1 spot tokens that deployers had registered as collateral for HIP-3 perpetual DEXes through the CoreWriter contract on HyperEVM.
It returned null if the token had not been registered as an aligned quote asset.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
type(string, required) — The request type. Must be"alignedQuoteTokenInfo".token(integer, required) — Spot token index from thespotMetauniverse (e.g.,0for USDC,1for PURR). Only tokens registered as aligned quote assets return data.
Response
Returns an aligned quote token info object, ornull if the token is not registered as an aligned quote asset.
isAligned(boolean) — Whether the token is currently aligned.firstAlignedTime(integer) — Unix timestamp in milliseconds when the token was first aligned.evmMintedSupply(string) — Total EVM minted supply of the token as reported by CoreWriter.dailyAmountOwed(array) — Array of[date, amount]tuples showing daily owed amounts, wheredateis aYYYY-MM-DDstring andamountis a decimal string.predictedRate(string) — Predicted alignment rate as a decimal string.
Example request
Shell
Example response
When the token is an aligned quote asset:Use case
Theinfo endpoint with type: "alignedQuoteTokenInfo" is useful for:
- Checking whether a HIP-1 token is registered as an aligned quote asset before deploying a HIP-3 perp DEX with it as collateral
- Monitoring the EVM minted supply and daily owed amounts for aligned tokens
- Building dashboards that track alignment status and rates for custom quote tokens
Body
application/json
Response
200 - application/json
object | null
Aligned quote token information or null
Whether the token is currently aligned
Unix timestamp in milliseconds when the token was first aligned
Total EVM minted supply as reported by CoreWriter
Array of [date, amount] tuples showing daily owed amounts
Predicted alignment rate as a decimal string
Last modified on June 24, 2026