Skip to main content
POST
/
api
/
github
/
users
/
search
/github/users/search
curl --request POST \
  --url https://api.anysite.io/api/github/users/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 500,
  "timeout": 300
}
'
[
  {
    "login": "<string>",
    "id": 123,
    "@type": "@github_user_search_result",
    "type": "",
    "image": "<string>",
    "web_url": "",
    "score": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query for users. Supports GitHub qualifiers like location:berlin, language:python, followers:>1000

Minimum string length: 1
Examples:

"location:berlin language:python"

"fullname:John followers:>1000"

count
integer
required

Number of users to return

Required range: 1 <= x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

login
string
required
id
integer
required
@type
string
default:@github_user_search_result
type
string
default:""
image
string | null
web_url
string
default:""
score
number | null