List tag protections for a repository
GET
/repos/{owner}/{repo}/tag_protections
const url = 'https://gitea.com/api/v1/repos/example/example/tag_protections';const options = {method: 'GET', headers: {Authorization: 'Basic <credentials>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://gitea.com/api/v1/repos/example/example/tag_protections \ --header 'Authorization: Basic <credentials>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”owner
required
string
Owner of the repo
repo
required
string
Name of the repo
Responses
Section titled “Responses”TagProtectionList
Media typeapplication/json
Array<object>
TagProtection represents a tag protection
object
created_at
string format: date-time
id
The unique identifier of the tag protection
integer format: int64
name_pattern
The pattern to match tag names for protection
string
updated_at
string format: date-time
whitelist_teams
List of team names allowed to create/delete protected tags
Array<string>
whitelist_usernames
List of usernames allowed to create/delete protected tags
Array<string>
Examplegenerated
[ { "created_at": "2026-04-15T12:00:00Z", "id": 1, "name_pattern": "example", "updated_at": "2026-04-15T12:00:00Z", "whitelist_teams": [ "example" ], "whitelist_usernames": [ "example" ] }]