GET
/
api
/
user
/
search
/
repositories
curl --request GET \
  --url https://app.all-hands.dev/api/user/search/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

query
string
required

Search query

per_page
integer
default:5

Number of repositories to return per page

sort
string
default:stars

Sort order for repositories

order
string
default:desc

Sort direction

Response

200
application/json

Search results

The response is of type object[].