# Get SLO History Get a weekly breakdown of historical data for a list of SLOs for a given time range. Endpoint: POST /1/reporting/slos/historical Version: 1.0.0 Security: configuration_key ## Request fields (application/json): - `ids` (array, required) A list of SLO IDs to retrieve history for. Cannot be an empty array or more than 24 in length. Example: ["2LBq9LckbcA","CzcpPs7cJ4d"] - `start_time` (integer, required) The starting Unix timestamp, in seconds since the epoch, to retrieve historical data for. Cannot be more than a year in the past. Example: 1742230800 - `end_time` (integer, required) The ending Unix timestamp, in seconds since the epoch, to retrieve historical data for. Must be greater than . Cannot be a future timestamp. Example: 1745254800 ## Response 401 fields (application/json): - `error` (string) ## Response 403 fields (application/json): - `error` (string) ## Response 422 fields (application/problem+json): - `error` (string, required) - `status` (number, required) The HTTP status code of the error. - `type` (string, required) Type is a URI used to uniquely identify the type of error. - `title` (string, required) Title is a human-readable summary that explains the of the problem. - `detail` (string) The general, human-readable error message. - `instance` (string) The unique identifier (ID) for this specific error. - `type_detail` (array) - `type_detail.field` (string) - `type_detail.code` (string) Enum: "invalid", "missing", "incorrect_type", "already_exists" - `type_detail.description` (string) ## Response 429 fields (application/json): - `error` (string) ## Response 500 fields (application/problem+json): - `error` (string, required) - `status` (number, required) The HTTP status code of the error. - `type` (string, required) Type is a URI used to uniquely identify the type of error. - `title` (string, required) Title is a human-readable summary that explains the of the problem. - `detail` (string) The general, human-readable error message. - `instance` (string) The unique identifier (ID) for this specific error. ## Response default fields (application/json): - `error` (string)