Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of 1.24.7, which is no longer the latest release. See the latest release.

List the authenticated user's access tokens

GET
/users/{username}/tokens
curl --request GET \
--url https://gitea.com/api/v1/users/example/tokens \
--header 'Authorization: Basic <credentials>'
username
required
string

Username of user

page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

AccessTokenList represents a list of API access token.

Media typeapplication/json
Array<object>
AccessToken represents an API access token.
object
created_at
string format: date-time
id
integer format: int64
last_used_at
string format: date-time
name
string
scopes
Array<string>
sha1
string
token_last_eight
string
Examplegenerated
[
{
"created_at": "2026-04-15T12:00:00Z",
"id": 1,
"last_used_at": "2026-04-15T12:00:00Z",
"name": "example",
"scopes": [
"example"
],
"sha1": "example",
"token_last_eight": "example"
}
]

APIForbiddenError is a forbidden error response

Media typeapplication/json
message
string
url
string