v1

latestOpenAPI 3.0.32026-07-22115106141.4 KB
Repository Management

List user's repositories

Get a list of repositories accessibly by the authenticated user

get/repos

Query parameters

ownedboolean

If specified, filters repositories by ownership of the authenticated user. True would mean only repos they own will be returned. False would mean only repos they collaborate on will be returned.

Response

Success

object'Repo' required

Example response

{
  "items": [
    {
      "repo_name": "repo-name",
      "repo_id": "example_id"
    }
  ]
}