Skip to main content

Timeseries Index Value

GET 

/v1/indexes/:index_id/timeseries

Timeseries Index Value

Request

Path Parameters

    index_id stringrequired

Query Parameters

    period_id stringrequired

    Identifier of requested timeseries period (e.g. 5SEC or 1DAY)

    time_start stringrequired

    Timeseries starting time in ISO 8601

    time_end stringrequired

    Timeseries ending time in ISO 8601

    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

    The start time of the time period.

    time_period_end date-time

    The end time of the time period.

    time_open date-timenullable

    The time when the value opened.

    time_close date-timenullable

    The time when the value closed.

    value_open doublenullable

    The opening value.

    value_high doublenullable

    The highest value during the time period.

    value_low doublenullable

    The lowest value during the time period.

    value_close doublenullable

    The closing value.

    value_count int64

    The number of values during the time period.

  • ]

Loading...