GET
/
v0
/
repositories
List GitHub repositories
curl --request GET \
  --url https://api.cursor.com/v0/repositories \
  --header 'Authorization: Bearer <token>'
{
  "repositories": [
    {
      "owner": "your-org",
      "name": "your-repo",
      "repository": "https://github.com/your-org/your-repo"
    }
  ]
}
このエンドポイントはレート制限がかなり厳しいよ。リクエストは 1 / ユーザー / 分30 / ユーザー / 時 に抑えてね。多くのリポジトリにアクセスできるユーザーは、レスポンスに数十秒かかることがあるよ。この情報が取得できない場合でも、エラーにならないようにうまく扱ってね。

Authorizations

Authorization
string
header
required

API key from Cursor Dashboard

Response

200
application/json

Repositories retrieved successfully

The response is of type object.