---
title: "Get Token Info"
method: GET
path: "/v1/chains/{chainId}/tokens/{tokenAddress}/info"
tags: ["Chains"]
---

# Get Token Info

`GET /v1/chains/{chainId}/tokens/{tokenAddress}/info`

This endpoint retrieves contract information about a token on a GM chain.

For caching details on this endpoint, please see: [Endpoint Caching](https://docs.ondo.finance/api-reference/endpoint-caching).

## Path parameters

- `chainId` 'ethereum-1' | 'bsc-56' | 'solana-900', required — The chain's identifier including the chain name and chain id.
- `tokenAddress` string, required

## Response `200`

OK

- GetTokenInfoResponse
  - `token` ChainTokenInfo, required
    - `tokenAddress` string, required — The address of the token contract.
    - `tokenName` string, required — The name of the token.
    - `tokenSymbol` string, required — The symbol of the token.
    - `tokenDecimals` integer, required — The number of decimal places the token can be divided into.
    - `tokenSupply` ChainTokenSupply, required
      - `value` string, required — The total supply of the token, represented as a string with 18 decimal places.

## Other responses

- `400` — One of the request parameters is invalid. Please see the returned message and documentation for details.
- `401` — Missing or invalid API key.
- `429` — The account has exceeded its rate limits. Please see the returned message and documentation for details.
- `500` — An internal server error occurred. Please see the returned message and documentation for details.

---

[API](https://skmtc.net/ondo/apis/gm-backend-api.md) · [All operations](https://skmtc.net/ondo/apis/gm-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondo/gm-backend-api/versions/12953a4908b2/schema)
