Skip to main content

Latest data

GET /v1/ohlcv/:symbol_id/latest

Get OHLCV latest timeseries data returned in time descending order. Data can be requested by the period and for the specific symbol eg BITSTAMP_SPOT_BTC_USD, if you need to query timeseries by asset pairs eg. BTC/USD, then please reffer to the Exchange Rates Timeseries data

info

OHLCV Latest endpoint is providing real-time data without delay. The OHLCV Historical endpoint data can be delayed a few seconds.

Path Parameters
  • symbol_id string required

    Symbol identifier of requested timeseries (from the Metadata -> Symbols)

Query Parameters
  • period_id string

    Identifier of requested timeseries period (required, e.g. 5SEC or 2MTH)

  • limit int32

    Default value: 100

    Amount of items to return (optional, mininum is 1, maximum is 100000, default value is 100, if the parameter is used then every 100 output items are counted as one request)

  • include_empty_items boolean

    Include items with no activity? (optional, default value is false, possible values are true or false)

Responses

successful operation

Schema
  • Array [
  • time_period_start date-time

    The start time of the time period.

  • time_period_end date-time

    The end time of the time period.

  • time_open date-time nullable

    The time when the price opened.

  • time_close date-time nullable

    The time when the price closed.

  • price_open double nullable

    The opening price.

  • price_high double nullable

    The highest price during the time period.

  • price_low double nullable

    The lowest price during the time period.

  • price_close double nullable

    The closing price.

  • volume_traded double

    The total volume traded during the time period.

  • trades_count int64

    The number of trades executed during the time period.

  • ]
Loading...