---
title: "Price stats (Multiple)"
method: POST
path: "/defi/v3/price/stats/multiple"
tags: ["Stats"]
---

# Price stats (Multiple)

`POST /defi/v3/price/stats/multiple`

Get the price stats (current price, high/low, percentage change) by time frame for multiple tokens. Max to 20 tokens

## Query parameters

- `list_timeframe` string
- `ui_amount_mode` 'raw' | 'scaled' | 'both'

## Headers

- `x-chain` 'solana' | 'ethereum' | 'arbitrum' | 'avalanche' | 'bsc' | 'optimism' | 'polygon' | 'base' | 'zksync' | 'monad' | 'hyperevm' | 'aptos' | 'fogo' | 'mantle' | 'megaeth' | 'robinhood' | 'sui'

## Request body

- ListAddressBody
  - `list_address` string, required

## Response `200`

JSON object containing list of price stats of tokens

- DefiPriceStatsResponse
  - `success` boolean, required — Indicates if the request was successful
  - `data` DefiTokenPriceStatsWithTimeframesObject[], required — Array of token data with price information for multiple timeframes
    - `address` string, required — The address of the token contract.
    - `is_scaled_ui_token` boolean
    - `multiplier` number — Multiplier used to scale the token price
    - `data` object[], required — Price data for a timeframe
      - `unix_time_update_price` integer, required — Unix timestamp of when the data was updated
      - `time_frame` string, required — Time period for the data (e.g., '24h', '2d', '3d')
      - `price` number, required — Current token price
      - `price_change_percent` number, required — Percentage change in price over the specified timeframe
      - `high` number, required — Highest price during the timeframe
      - `low` number, required — Lowest price during the timeframe
      - `scaled_price` number — Current token scaled price
      - `scaled_high` number — Highest scaled price during the timeframe
      - `scaled_low` number — Lowest scaled price during the timeframe

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. API key is missing or invalid
- `403` — Forbidden. Request is blacklisted or not whitelisted
- `429` — Too Many Requests. Rate limit reached
- `500` — Internal Server Error

---

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