cURL
curl --request GET \ --url https://dash.empirical.run/api/snoozes \ --header 'Authorization: Bearer <token>'
{ "data": { "snoozes": [ { "id": 12, "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
curl -X GET \ "https://dash.empirical.run/api/snoozes" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?status=expired" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?environment_id=7" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
curl -X GET \ "https://dash.empirical.run/api/snoozes?per_page=10&page=2" \ -H "Authorization: Bearer $EMPIRICALRUN_KEY"
API key from the Empirical dashboard.
Page number (1-indexed, default 1).
Items per page (default 20).
Filter by environment ID.
Filter by status: active (default), expired, or all.
active
expired
all
Paginated list of snoozes.
Show child attributes
Was this page helpful?