---
title: "Get Token Price"
method: POST
path: "/quotes/{chain_id}"
tags: ["pricing"]
---

# Get Token Price

`POST /quotes/{chain_id}`

Fetch current prices for one or more tokens on a specific chain.

## Path parameters

- `chain_id` string, required

## Request body

- QuotesRequestBody
  - `addresses` string[] — An array of token addresses you want pricing data for. The `0x0000000000000000000000000000000000000000` address represents the native coin on the given chain, `ETH` on Ethereum Mainnet or `MATIC` on Polygon Mainnet. <br><br> You can use the `address` from the [GET Tokens endpoint](https://docs.blockdaemon.com/reference/gettokens-pricing) to get the price for a particular token.
  - `units` string[] — An array of quotes for the currency. For example, `USD` or `EUR`.

## Response `200`

OK

- Quotes
  - `quotes` Quote[]
    - `symbol` string
    - `address` string
    - `chainId` string
    - `timestamp` string, RFC3339
    - `units` string — An array of quotes for the currency. For example, `USD` or `EUR`.
    - `price` string

## Other responses

- `401` — Invalid or expired token
- `429` — Rate limit exceeded
- `500` — An internal server error happened
- `503` — The resource you are trying to access is currently unavailable

---

[API](https://skmtc.dev/blockdaemon/apis/staking-api.md) · [All operations](https://skmtc.dev/blockdaemon/apis/staking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/blockdaemon/staking-api/revisions/f94e296a08a3/schema)
