v2

latestOpenAPI 3.0.3Apache 2.02026-07-3149289180.2 KB

Get Index

Get index price and the list of constituents for an asset.

get/v1/info/index

Query parameters

assetstring required

Asset name

Example:USDC

Response

Index constituents response.

assetstring required

Asset name

index_pricestring required

Index price

tsinteger required

Request timestamp. Unix milliseconds for most operations; Unix seconds for withdrawals (must match the on-chain EIP-712 struct verified against block.timestamp).

Example response

{
  "asset": "USDC",
  "index_price": "100.00",
  "constituents": [
    {
      "source": "chainlink",
      "symbol": "NVDA-USDC",
      "weight": "0.25",
      "price": "100.00"
    }
  ],
  "ts": 1767225600000
}