Handling Time
By default, all datetime values returned by the API are in UTC. The API provides start_time and end_time query parameters to filter results based on a specific time range. These parameters only filter on a dataset's time_index_column. If a dataset does not have a time_index_column, these parameters do not apply.
start_time: Specifies the start of the time range for the query. Records with a timestamp equal to or greater than thestart_timewill be returned. Format:YYYY-MM-DDTHH:MM-HH:MMend_time: Specifies the end of the time range for the query. Theend_timeis not included. Records with a timestamp less than theend_timewill be returned. Format:YYYY-MM-DDTHH:MM-HH:MM
A few notes about how datetime parameters are handled:
If no
start_timeorend_timeare specified, the API will return all recordsIf no timezone or offset is specified, the API defaults to using UTC. For example,
2021-01-01T00:00is equivalent to2021-01-01T00:00+00:00.If only a date is provided without a time, it is assumed to be 00:00 of that day. For example,
2021-01-01is equivalent to2021-01-01T00:00+00:00.You can provide a timezone offset in the format
+HH:MMor-HH:MM. For example,2021-01-01T00:00-05:00is equivalent to2021-01-01T05:00+00:00.
Examples of valid time strings:
2021-01-01T00:00+00:002021-01-01T00:00-05:002021-01-01T00:002021-01-01
Last updated
Was this helpful?

