curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "alignedQuoteTokenInfo",
"token": 1
}
'{
"isAligned": true,
"firstAlignedTime": 123,
"evmMintedSupply": "<string>",
"dailyAmountOwed": [
[
"<string>"
]
],
"predictedRate": "<string>"
}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "alignedQuoteTokenInfo",
"token": 1
}
'{
"isAligned": true,
"firstAlignedTime": 123,
"evmMintedSupply": "<string>",
"dailyAmountOwed": [
[
"<string>"
]
],
"predictedRate": "<string>"
}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.
type (string, required) — The request type. Must be "alignedQuoteTokenInfo".token (integer, required) — Spot token index from the spotMeta universe (e.g., 0 for USDC, 1 for PURR). Only tokens registered as aligned quote assets return data.null 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, where date is a YYYY-MM-DD string and amount is a decimal string.predictedRate (string) — Predicted alignment rate as a decimal string.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "alignedQuoteTokenInfo", "token": 1}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
{
"isAligned": true,
"firstAlignedTime": 1759914226913,
"evmMintedSupply": "0.0",
"dailyAmountOwed": [
["2025-10-08", "0.0"],
["2025-10-09", "0.0"]
],
"predictedRate": "0.03154807"
}
null
info endpoint with type: "alignedQuoteTokenInfo" is useful for:
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
Was this page helpful?