Get list of all existing stopwatches
GET
/user/stopwatches
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “ Query Parameters ” page
integer
Page number of results to return (1-based)
limit
integer
Page size of results
Responses
Section titled “ Responses ”StopWatchList
Media type application/json
Array<object>
StopWatch represent a running stopwatch
object
created
string format: date-time
duration
string
issue_index
integer format: int64
issue_title
string
repo_name
string
repo_owner_name
string
seconds
integer format: int64
Example generated
[ { "created": "2026-04-15T12:00:00Z", "duration": "example", "issue_index": 1, "issue_title": "example", "repo_name": "example", "repo_owner_name": "example", "seconds": 1 }]Headers
Section titled “ Headers ” X-Total-Count
integer format: int64
The total number of stop watches
APIUnauthorizedError is a unauthorized error response
Media type application/json
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APIForbiddenError is a forbidden error response
Media type application/json
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}