{% extends "docs/base.html" %} {% block docs_content %}
List timers in one user, team, or repo scope, optionally filtered by lifecycle status.
GET /api/v1/users/{username}/timers
GET /api/v1/teams/{team_slug}/timers
GET /api/v1/teams/{team_slug}/repos/{repo_slug}/timers
GET /api/v1/users/{username}/repos/{repo_slug}/timers
status: active, paused, completed, or cancelled.page: 1-based page number.per_page: number of timers per page.GET /api/v1/users/alice/timers?status=active&page=1&per_page=20
200 OK with the standard page envelope. Each item in results has the timer response shape shown below.
{
"next": null,
"previous": null,
"results": [
{ "uuid": "8f7a2ba9-8a67-4a56-a8e8-0fe9f26717f6", "status": "active", "...": "..." }
]
}