curl --request POST \
--url https://api.checklyhq.com/v1/check-sessions/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target": {
"matchTags": [
[
"production",
"!skip-e2e"
]
],
"checkId": [
"a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a"
]
}
}
'{
"sessions": [
{
"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",
"status": "PASSED",
"startedAt": "2025-08-28T18:23:40.262Z",
"timeElapsed": 300731,
"runLocations": [
"us-east-1",
"eu-central-1"
],
"name": "Example API Check",
"stoppedAt": "2025-08-28T18:28:40.993Z"
}
]
}Starts a check session for each check that matches the provided target filters. If no filters are given, matches all eligible checks.
This endpoint does not wait for the check session to complete. Use the GET /v1/check-sessions/{checkSessionId}/completion or GET /v1/check-sessions/{checkSessionId} endpoints to track progress if needed.
Standard alerting rules apply to finished check runs.
Equivalent to the Schedule Now button in the UI.
curl --request POST \
--url https://api.checklyhq.com/v1/check-sessions/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target": {
"matchTags": [
[
"production",
"!skip-e2e"
]
],
"checkId": [
"a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a"
]
}
}
'{
"sessions": [
{
"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",
"status": "PASSED",
"startedAt": "2025-08-28T18:23:40.262Z",
"timeElapsed": 300731,
"runLocations": [
"us-east-1",
"eu-central-1"
],
"name": "Example API Check",
"stoppedAt": "2025-08-28T18:28:40.993Z"
}
]
}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]"
Show child attributes
Match checks with the given tags. Group tags also match.
The value is a two-dimensional array. The top level array defines OR conditions, and the second level AND conditions. Tags can also be prefixed with ! to only match checks without those tags.
Example: [[a, b], [a, c, !d]] means (a && b) || (a && c && !d).
[["production", "!skip-e2e"]]Match checks with the given identifiers.
["a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a"]Returns a check session for each check matching target conditions.
Returns a check session for each check matching target conditions.
A list of check sessions, with one check session for each check.
Show child attributes
The unique identifier of the check session.
"8166fa86-c9b4-4162-8541-d380c6c212d8"
A link to the check session.
"https://app.checklyhq.com/accounts/1397c172-1938-4973-a225-5862298e571a/checks/a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a/check-sessions/8166fa86-c9b4-4162-8541-d380c6c212d8"
The ID of the check.
"a4cd4ad9-4815-4a9e-92d2-0a7c562ee69a"
API, BROWSER, MULTI_STEP, TCP, PLAYWRIGHT, URL, DNS "API"
The status of the check session.
STARTED, PROGRESS, FAILED, PASSED, DEGRADED, PROGRESS_FAILED, PROGRESS_DEGRADED, TIMED_OUT "PASSED"
The date and time when the session started.
"2025-08-28T18:23:40.262Z"
The time the check session took, in milliseconds.
300731
The run locations of the check session.
["us-east-1", "eu-central-1"]"Example API Check"
The date and time when the session stopped.
"2025-08-28T18:28:40.993Z"
Was this page helpful?