v2
latestOpenAPI 3.0.02026-07-261859071.2 MBCheck sessions
Retrieve a check session
Retrieves a check session. Results may be incomplete if the check session is still in progress.
Once a check session has finished, results will include at least one check result for each run location: one result with resultType equal to "FINAL", and zero or more results with resultType equal to "ATTEMPT" (one for each failed attempt, if any).
Each result contains just enough information to quickly determine whether the check run was successful or not. To dive even deeper into individual results, use the GET /v1/check-results/{checkId}/{checkResultId} endpoint to retrieve detailed data about a specific result.
get/v1/check-sessions/{checkSessionId}
Path parameters
checkSessionIdstring required
The unique identifier of the check session.
The unique identifier of the check session.
Response
The current state of the check session.
Example response
{
"checkSessionId": "8166fa86-c9b4-4162-8541-d380c6c212d8",
"checkSessionLink": "https://app.checklyhq.com/accounts/1397c172-1938-4973-a225-5862298e571a/checks/a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a/check-sessions/8166fa86-c9b4-4162-8541-d380c6c212d8",
"checkId": "a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a",
"checkType": "API",
"name": "Example API Check",
"status": "PASSED",
"startedAt": "2025-08-28T18:23:40.262Z",
"stoppedAt": "2025-08-28T18:28:40.993Z",
"timeElapsed": 300731,
"runLocations": [
"us-east-1",
"eu-central-1"
],
"runSource": "TRIGGER_API",
"results": [
{
"checkResultId": "22be3b52-5ec2-4894-9086-b5b4a8b00a89",
"checkResultLink": "https://app.checklyhq.com/accounts/1397c172-1938-4973-a225-5862298e571a/checks/a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a/check-sessions/8166fa86-c9b4-4162-8541-d380c6c212d8/results/22be3b52-5ec2-4894-9086-b5b4a8b00a89",
"checkId": "a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a",
"checkType": "API",
"name": "Example API Check",
"runLocation": "us-east-1",
"resultType": "FINAL",
"responseTime": 1234,
"startedAt": "2025-08-28T18:23:40.262Z",
"stoppedAt": "2025-08-28T18:23:41.496Z"
}
]
}