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

query
string
required
per_page
integer
default:5
sort
string
default:stars
order
string
default:desc
selected_provider
enum<string> | null
Available options:
github,
gitlab,
bitbucket,
enterprise_sso

Response

200
application/json

Successful Response

The response is of type Repository · object[].