Skip to main content
GET
/
repos
/
{owner}
/
{repo}
/
labels
List all labels for a repository
curl --request GET \
  --url https://gogs.example.com/api/v1/repos/{owner}/{repo}/labels \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "name": "<string>",
    "color": "<string>",
    "url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Personal access token. Use format: token {YOUR_ACCESS_TOKEN}

Path Parameters

owner
string
required

Repository owner

repo
string
required

Repository name

Response

Success

id
integer
name
string
color
string
url
string