curl --request GET \
--url https://api.checklyhq.com/v1/status-pages/incidents \
--header 'Authorization: Bearer <token>'{
"length": 123,
"entries": [
{
"name": "<string>",
"severity": "CRITICAL",
"id": "<string>",
"services": [
{
"name": "<string>",
"id": "<string>",
"accountId": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"checks": [
{
"id": "<string>",
"name": "<string>"
}
]
}
],
"incidentUpdates": [
{
"description": "<string>",
"id": "<string>",
"created_at": "2023-12-25",
"status": "INVESTIGATING",
"publicIncidentUpdateDate": "2025-12-05T02:37:44.791Z",
"notifySubscribers": false
}
],
"lastUpdateStatus": "INVESTIGATING",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"nextId": "<string>"
}Get the latest 100 incidents for all services.
curl --request GET \
--url https://api.checklyhq.com/v1/status-pages/incidents \
--header 'Authorization: Bearer <token>'{
"length": 123,
"entries": [
{
"name": "<string>",
"severity": "CRITICAL",
"id": "<string>",
"services": [
{
"name": "<string>",
"id": "<string>",
"accountId": "<string>",
"created_at": "2023-12-25",
"updated_at": "2023-12-25",
"checks": [
{
"id": "<string>",
"name": "<string>"
}
]
}
],
"incidentUpdates": [
{
"description": "<string>",
"id": "<string>",
"created_at": "2023-12-25",
"status": "INVESTIGATING",
"publicIncidentUpdateDate": "2025-12-05T02:37:44.791Z",
"notifySubscribers": false
}
],
"lastUpdateStatus": "INVESTIGATING",
"created_at": "2023-12-25",
"updated_at": "2023-12-25"
}
],
"nextId": "<string>"
}The Checkly Public API uses API keys to authenticate requests. You can get the API Key here. Your API key is like a password: keep it secure!
Authentication to the API is performed using the Bearer auth method in the Authorization header and using the account ID.
For example, set Authorization header while using cURL: curl -H "Authorization: Bearer [apiKey]" "X-Checkly-Account: [accountId]"
Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general
Successful
Show child attributes
255CRITICAL, MAJOR, MEDIUM, MINOR 1Show child attributes
Show child attributes
INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED Was this page helpful?