Skip to main content
GET
/
repos
/
search
Search repositories
curl --request GET \
  --url https://gogs.example.com/api/v1/repos/search \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": 123,
      "owner": {
        "id": 123,
        "username": "<string>",
        "login": "<string>",
        "full_name": "<string>",
        "email": "[email protected]",
        "avatar_url": "<string>"
      },
      "name": "<string>",
      "full_name": "<string>",
      "description": "<string>",
      "private": true,
      "fork": true,
      "parent": "<unknown>",
      "empty": true,
      "mirror": true,
      "size": 123,
      "html_url": "<string>",
      "ssh_url": "<string>",
      "clone_url": "<string>",
      "website": "<string>",
      "stars_count": 123,
      "forks_count": 123,
      "watchers_count": 123,
      "open_issues_count": 123,
      "default_branch": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "permissions": {
        "admin": true,
        "push": true,
        "pull": true
      }
    }
  ],
  "ok": true
}

Authorizations

Authorization
string
header
required

Personal access token. Use format: token {YOUR_ACCESS_TOKEN}

Query Parameters

q
string
required

Search keyword

uid
integer

User ID to filter by

limit
integer
default:10

Max results

page
integer
default:1

Page number

Response

200 - application/json

Success

data
object[]
ok
boolean