> ## 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.

# alignedQuoteTokenInfo | Hyperliquid info

> The info endpoint with type: "alignedQuoteTokenInfo" retrieves supply, rate, and pending payment information for an aligned quote token.

<Warning>
  **Removed by Hyperliquid (\~June 2026).** The Hyperliquid API no longer recognizes the `alignedQuoteTokenInfo` request type — requests fail to deserialize — and the method has been dropped from the official SDKs. There is no direct replacement. For the aligned quote asset mechanism, see [Aligned quote assets](https://hyperliquid.gitbook.io/hyperliquid-docs/hypercore/aligned-quote-assets) in the Hyperliquid docs; for spot token metadata, see [tokenDetails](/reference/hyperliquid-info-token-details). This page is kept for reference.
</Warning>

The `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.

## Parameters

### Request body

* `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.

## Response

Returns an aligned quote token info object, or `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.

## Example request

```shell Shell theme={"system"}
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "alignedQuoteTokenInfo", "token": 1}' \
  https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
```

## Example response

When the token is an aligned quote asset:

```json theme={"system"}
{
  "isAligned": true,
  "firstAlignedTime": 1759914226913,
  "evmMintedSupply": "0.0",
  "dailyAmountOwed": [
    ["2025-10-08", "0.0"],
    ["2025-10-09", "0.0"]
  ],
  "predictedRate": "0.03154807"
}
```

When the token is not an aligned quote asset:

```json theme={"system"}
null
```

## Use case

The `info` 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


## OpenAPI

````yaml openapi/hyperliquid_node_api/hypercore_info/info_aligned_quote_token_info.json post /4f8d8f4040bdacd1577bff8058438274/info
openapi: 3.0.0
info:
  title: Hyperliquid Node API
  version: 1.0.0
  description: This is an API for interacting with Chainstack Hyperliquid node.
servers:
  - url: https://hyperliquid-mainnet.core.chainstack.com
security: []
paths:
  /4f8d8f4040bdacd1577bff8058438274/info:
    post:
      tags:
        - hyperliquid operations
      summary: info (alignedQuoteTokenInfo)
      operationId: infoAlignedQuoteTokenInfo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: Request type
                  default: alignedQuoteTokenInfo
                  enum:
                    - alignedQuoteTokenInfo
                token:
                  type: integer
                  description: >-
                    Spot token index from the spotMeta universe. Only tokens
                    registered as aligned quote assets return data.
                  default: 1
              required:
                - type
                - token
      responses:
        '200':
          description: Aligned quote token information or null
          content:
            application/json:
              schema:
                nullable: true
                type: object
                properties:
                  isAligned:
                    type: boolean
                    description: Whether the token is currently aligned
                  firstAlignedTime:
                    type: integer
                    description: >-
                      Unix timestamp in milliseconds when the token was first
                      aligned
                  evmMintedSupply:
                    type: string
                    description: Total EVM minted supply as reported by CoreWriter
                  dailyAmountOwed:
                    type: array
                    description: Array of [date, amount] tuples showing daily owed amounts
                    items:
                      type: array
                      items:
                        type: string
                  predictedRate:
                    type: string
                    description: Predicted alignment rate as a decimal string
      deprecated: true

````