Search users

GET {{baseUrl}}/search/users?q=<string>&sort=<string>&order=desc&per_page=30&page=1

Find users via various criteria. This method returns up to 100 results per page.

When searching for users, you can get text match metadata for the issue login, email, and name fields when you pass the text-match media type. For more details about highlighting search results, see Text match metadata. For more details about how to receive highlighted search results, see Text match metadata.

For example, if you're looking for a list of popular users, you might try this query:

q=tom+repos:%3E42+followers:%3E1000

This query searches for users with the name tom. The results are restricted to users with more than 42 repositories and over 1,000 followers.

Request Params

KeyDatatypeRequiredDescription
qstring(Required) The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as GitHub.com. To learn more about the format of the query, see Constructing a search query. See "Searching users" for a detailed list of qualifiers.
sortstringSorts the results of your query by number of followers or repositories, or when the person joined GitHub. Default: best match
orderstringDetermines whether the first search result returned is the highest number of matches (desc) or lowest number of matches (asc). This parameter is ignored unless you provide sort.
per_pagenumberResults per page (max 100)
pagenumberPage number of the results to fetch.

RESPONSES

status: OK

{&quot;total_count&quot;:12,&quot;incomplete_results&quot;:false,&quot;items&quot;:[{&quot;login&quot;:&quot;mojombo&quot;,&quot;id&quot;:1,&quot;node_id&quot;:&quot;MDQ6VXNlcjE=&quot;,&quot;avatar_url&quot;:&quot;https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png&quot;,&quot;gravatar_id&quot;:&quot;&quot;,&quot;url&quot;:&quot;https://api.github.com/users/mojombo&quot;,&quot;html_url&quot;:&quot;https://github.com/mojombo&quot;,&quot;followers_url&quot;:&quot;https://api.github.com/users/mojombo/followers&quot;,&quot;subscriptions_url&quot;:&quot;https://api.github.com/users/mojombo/subscriptions&quot;,&quot;organizations_url&quot;:&quot;https://api.github.com/users/mojombo/orgs&quot;,&quot;repos_url&quot;:&quot;https://api.github.com/users/mojombo/repos&quot;,&quot;received_events_url&quot;:&quot;https://api.github.com/users/mojombo/received_events&quot;,&quot;type&quot;:&quot;User&quot;,&quot;score&quot;:1,&quot;following_url&quot;:&quot;https://api.github.com/users/mojombo/following{/other_user}&quot;,&quot;gists_url&quot;:&quot;https://api.github.com/users/mojombo/gists{/gist_id}&quot;,&quot;starred_url&quot;:&quot;https://api.github.com/users/mojombo/starred{/owner}{/repo}&quot;,&quot;events_url&quot;:&quot;https://api.github.com/users/mojombo/events{/privacy}&quot;,&quot;site_admin&quot;:true}]}