---
title: "Get spot prices"
method: GET
path: "/api/v1/marketdata/cryptocompare/spot/prices"
tags: ["Market Data"]
---

# Get spot prices

`GET /api/v1/marketdata/cryptocompare/spot/prices`

Get a single OHLCV (Open, High, Low, Close, Volume) price data point for a currency pair at a specific time.
Using this endpoint requires an access token with the appropriate enterprise ID.

**Requires access token scope:** `crypto_compare`

## Query parameters

- `base` string, required
- `quote` string, required
- `interval` 'minute' | 'hour' | 'day', required
- `timestamp` string, date-time

## Response `200`

Returns a single OHLCV price data point for the specified time.

- HistoricalPrice — OHLCV price data for a single time interval.
  - `time` string, date-time, required — The timestamp marking the start of this interval (RFC 3339 format).
  - `open` number, float, required — The opening price at the start of the interval.
  - `high` number, float, required — The highest price reached during the interval.
  - `low` number, float, required — The lowest price reached during the interval.
  - `close` number, float, required — The closing price at the end of the interval.
  - `base_volume` number, float, required — The total trading volume in the base currency during the interval.
  - `quote_volume` number, float, required — The total trading volume in the quote currency during the interval.

## Other responses

- `400` — Bad request.

---

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