---
title: "Get current token price (batch)"
method: POST
path: "/api/2/token/price"
tags: ["V2 - Token"]
---

# Get current token price (batch)

`POST /api/2/token/price`

Fetch current price, market cap, liquidity and other market data for multiple tokens in a single batch. Returns data with USD suffix naming convention. Max 500 items per request. For historical point-in-time prices, use `POST /2/token/price-at`.

## Request body

- union
  - object[]
    - `chainId` string
    - `blockchain` string
    - `address` string
  - object
    - `items` object[], required
      - `chainId` string
      - `blockchain` string
      - `address` string

## Response `200`

Token price batch response

- object
  - `payload` union[], required
    - union
      - object
        - `name` string, nullable, required
        - `symbol` string, nullable, required
        - `logo` string, nullable, required
        - `priceUSD` number, nullable, required
        - `marketCapUSD` number, nullable, required
        - `marketCapDilutedUSD` number, nullable, required
        - `liquidityUSD` number, nullable, required
        - `liquidityMaxUSD` number, nullable, required
      - object
        - `error` string
      - unknown

## Other responses

- `402` — Payment Required

---

[API](https://skmtc.net/mobula/apis/mobula-api.md) · [All operations](https://skmtc.net/mobula/apis/mobula-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobula/mobula-api/versions/32f95d9e8ff2/schema)
