cURL
curl --request GET \ --url https://api.example.com/api/snoozes \ --header 'Authorization: <authorization>'
{ "data": { "snoozes": [ { "id": 12, "project_id": 4, "test_ids": [ "a30a6eba6312f6b87ea5-55e241fbe3f4b8ae61ee", "b41b7fca7423g7c98fb6-66f352gcf4g5c9bf72ff" ], "snooze_until": "2026-04-15T00:00:00.000Z", "description": "Flaky due to third-party API instability", "created_from_test_run_id": 456, "created_by": null, "created_at": "2026-03-15T10:30:00.000Z", "updated_at": "2026-03-15T10:30:00.000Z", "scoped_to_environment_id": null } ] }, "pagination": { "page": 1, "per_page": 20, "total": 3, "total_pages": 1 } }
Retrieve a paginated list of snoozes for a project
Bearer <your-api-key>
active
snooze_until
expired
all
Show snooze properties
null
Show properties
curl -X GET \ "https://dash.empirical.run/api/snoozes?project_id=4" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?project_id=4&status=expired" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?project_id=4&environment_id=7" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?project_id=4&per_page=10&page=2" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
Was this page helpful?