跳转到内容
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
Support
This is the documentation of 22.6.1, which is no longer the latest release. See the latest release.

Get list of all existing stopwatches

GET
/user/stopwatches
curl --request GET \
--url https://gitea.example.com/api/v1/user/stopwatches \
--header 'Authorization: Basic <credentials>'
page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

StopWatchList

Media typeapplication/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
Examplegenerated
[
{
"created": "2026-04-15T12:00:00Z",
"duration": "example",
"issue_index": 1,
"issue_title": "example",
"repo_name": "example",
"repo_owner_name": "example",
"seconds": 1
}
]