Skip to main content

Timeseries data

GET /v1/exchangerate/:asset_id_base/:asset_id_quote/history

Get the historical exchange rates between two assets in the form of the timeseries.

Path Parameters
  • asset_id_base string required

    Requested exchange rates base asset identifier (from the Metadata -> Assets)

  • asset_id_quote string required

    Requested exchange rates base asset identifier (from the Metadata -> Assets)

Query Parameters
  • period_id string

    Identifier of requested timeseries period (required, e.g. 5SEC or 1HRS)

  • time_start string

    Timeseries starting time in ISO 8601 (required)

  • time_end string

    Timeseries ending time in ISO 8601 (required)

  • 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)

Responses

successful operation

Schema
  • Array [
  • time_period_start date-time

    Gets or sets the start time of the period.

  • time_period_end date-time

    Gets or sets the end time of the period.

  • time_open date-time nullable

    Gets or sets the opening time of the period.

  • time_close date-time nullable

    Gets or sets the closing time of the period.

  • rate_open double nullable

    Gets or sets the opening rate for the period.

  • rate_high double nullable

    Gets or sets the highest rate for the period.

  • rate_low double nullable

    Gets or sets the lowest rate for the period.

  • rate_close double nullable

    Gets or sets the closing rate for the period.

  • ]
Loading...