> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Check Report Status

Get a list of status changes for a specified check and time period. If order is specified to descending, the list is ordered by newest first. (The default is ordered by oldest first.) It can be used to display a detailed view of a check.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                              |
  | --------- | ------------------------------------------------------------------------------------------------------------------------ |
  | Check ID  | Specifies the id of the check for which the status change report will be fetched.                                        |
  | From      | Start time of period. The format is `RFC 3339` (properly URL-encoded!). The default value is one week earlier than `to`. |
  | Order     | Sorting order of outages. Ascending or descending.                                                                       |
  | To        | End time of period. The format is `RFC 3339` (properly URL-encoded!). The default value is the current time.             |
</div>

## Example Output

```json theme={"dark"}
{
	"report": {
		"check_id": 123,
		"name": "My awesome check",
		"states": [
			{
				"error_in_step": 2,
				"from": "2020-07-10T10:51:55.000Z",
				"message": "URL should be 'http://www.example12345.com/' but is 'http://www.example.com/'.",
				"status": "down",
				"to": "2020-07-14T07:25:15.000Z"
			}
		]
	}
}
```

## Workflow Library Example

[Get Check Report Status with Pingdom and Send Results Via Email](https://library.blinkops.com/workflows/get-check-report-status-with-pingdom-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-check-report-status-with-pingdom-and-send-results-via-email/canvas" />
</div>
