Skip to content

Get list of topics that a repository has

GET
/repos/{owner}/{repo}/topics
owner
required
string

Owner of the repo

repo
required
string

Name of the repo

page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

TopicNames

Media type application/json

TopicName a list of repo topic names

object
topics
Array<string>
Example generated
{
"topics": [
"example"
]
}

APINotFound is a not found error response

Media type application/json
object
errors
Array<string>
message
string
url
string
Example generated
{
"errors": [
"example"
],
"message": "example",
"url": "example"
}