---
title: "Fetch batch token prices with OHLCV candle history"
method: POST
path: "/price"
tags: ["Prices"]
---

# Fetch batch token prices with OHLCV candle history

`POST /price`

Get real-time prices, OHLCV candlestick data, volume, and market cap for multiple tokens at once.

## Request body

- object
  - `tokens` string[] — Token symbols or mint addresses
  - `period` '1h' | '4h' | '1d' | '7d' — Candlestick period

## Response `200`

Batch price data

- BatchPriceResponse
  - `tokens` object[]
    - `symbol` string
    - `price_usd` number
    - `change_24h` number
    - `volume_24h` number
    - `market_cap` number
    - `candles` object[]
      - `time` string, date-time
      - `open` number
      - `high` number
      - `low` number
      - `close` number
      - `volume` number

## Other responses

- `402` — Payment required

---

[API](https://skmtc.net/solsigs/apis/solsigs-solana-data-apis-for-ai-agents.md) · [All operations](https://skmtc.net/solsigs/apis/solsigs-solana-data-apis-for-ai-agents/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solsigs/solsigs-solana-data-apis-for-ai-agents/revisions/296e44870ad2/schema)
