List the timesteps present in a temporal raster.

Responds with a list of datetimes, along with the queried start and end.

Query parameters

start: Optional Datetime as ISO8601 string. Defaults to the first timestep of the raster.

end: Optional Datetime as ISO8601 string. Defaults to the last timestep of the raster. The preferred name for this query parameter is "end", but "stop" is accepted as well for backwards compatibility.

GET /api/v4/rasters/eae92c48-cd68-4820-9d82-f86f763b4186/timesteps/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "start": "1970-01-01T00:00:00Z",
    "end": "1970-01-01T00:00:00Z",
    "steps": [
        "1970-01-01T00:00:00Z"
    ]
}