# List status updates per report

Returns a list of status updates for your status page report. This endpoint [supports pagination](https://betterstack.com/docs/uptime/api/pagination/).

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/status-pages/{status_page_id}/status-reports/{status_report_id}/status-updates"
method = "GET"

[[path_param]]
name = "status_page_id"
description = "The ID of your status page"
required = true
type = "string"

[[path_param]]
name = "status_report_id"
description = "The ID of your status page report"
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"

[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a list of status updates for your status page report'''
body = '''{
    "data": [
        {
            "id": "123456",
            "type": "status_update",
            "attributes": {
                "message": "First status update message",
                "published_at": "2021-12-16T16:04:09.880Z",
                "published_at_timezone": "UTC",
                "notify_subscribers": true,
                "status_report_id": 12345,
                "affected_resources": [
                    {
                        "status_page_resource_id": "12345",
                        "status": "degraded"
                    }
                ]
            }
        },
        {
            "id": "123457",
            "type": "status_update",
            "attributes": {
                "message": "Second status update message",
                "published_at": "2021-12-16T16:35:16.627Z",
                "published_at_timezone": "UTC",
                "notify_subscribers": false,
                "status_report_id": 12345,
                "affected_resources": [
                    {
                        "status_page_resource_id": "12345",
                        "status": "downtime"
                    }
                ]
            }
        }
    ],
    "pagination": {
        "first": "https://uptime.pdev/api/v2/status-pages/123456/status-reports/12345/status-updates?page=1",
        "last": "https://uptime.pdev/api/v2/status-pages/123456/status-reports/12345/status-updates?page=1",
        "prev": null,
        "next": null
    }
}'''
[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/status-pages/123456/status-reports/12345/status-updates \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all status page report updates API parameters](https://betterstack.com/docs/uptime/api/status-page-report-updates-api-response-params/)
[/info]