info (alignedQuoteTokenInfo)
Hyperliquid node API
alignedQuoteTokenInfo | Hyperliquid info
The info endpoint with type: “alignedQuoteTokenInfo” retrieves supply, rate, and pending payment information for an aligned quote token.
POST
info (alignedQuoteTokenInfo)
Documentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
info endpoint with type: "alignedQuoteTokenInfo" retrieves supply, rate, and pending payment information for an aligned quote token. Aligned quote tokens are HIP-1 spot tokens that deployers have registered as collateral for HIP-3 perpetual DEXes through the CoreWriter contract on HyperEVM.
Returns null if the token has 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 May 18, 2026