Skip to main content
GET
/
repos
/
{owner}
/
{repo}
/
labels
/
{id}
Get a single label
curl --request GET \
  --url https://gogs.example.com/api/v1/repos/{owner}/{repo}/labels/{id} \
  --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

id
string
required

Label ID

Response

Success

id
integer
name
string
color
string
url
string