GET
/
api
/
user
/
repositories
curl --request GET \
  --url https://app.all-hands.dev/api/user/repositories \
  --header 'Authorization: Bearer <token>'
[
  {
    "full_name": "<string>",
    "description": "<string>",
    "html_url": "<string>",
    "private": true,
    "fork": true,
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sort
string
default:pushed

Sort order for repositories

Response

200
application/json

User repositories

The response is of type object[].