Get a single user
curl --request GET \
--url https://gogs.example.com/api/v1/users/{username} \
--header 'Authorization: <api-key>'{
"id": 123,
"username": "<string>",
"login": "<string>",
"full_name": "<string>",
"email": "jsmith@example.com",
"avatar_url": "<string>"
}Users
Get a single user
GET
/
users
/
{username}
Get a single user
curl --request GET \
--url https://gogs.example.com/api/v1/users/{username} \
--header 'Authorization: <api-key>'{
"id": 123,
"username": "<string>",
"login": "<string>",
"full_name": "<string>",
"email": "jsmith@example.com",
"avatar_url": "<string>"
}Authorizations
Personal access token. Use format: token {YOUR_ACCESS_TOKEN}
Path Parameters
Username