GET
/
api
/
user
/
repositories
Get User Repositories
curl --request GET \
  --url https://app.all-hands.dev/api/user/repositories \
  --header 'X-Session-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "full_name": "<string>",
    "git_provider": "github",
    "is_public": true,
    "stargazers_count": 123,
    "link_header": "<string>",
    "pushed_at": "<string>",
    "owner_type": "user",
    "main_branch": "<string>"
  }
]

Authorizations

X-Session-API-Key
string
header
required

Query Parameters

sort
string
default:pushed
selected_provider
enum<string> | null
Available options:
github,
gitlab,
bitbucket,
enterprise_sso
page
integer | null
per_page
integer | null
installation_id
string | null

Response

200
application/json

Successful Response

The response is of type Repository · object[].