{"meta":{"title":"Searching users","intro":"You can search for users on GitHub and narrow the results using these user search qualifiers in any combination.","product":"Search on GitHub","breadcrumbs":[{"href":"/en/search-github","title":"Search on GitHub"},{"href":"/en/search-github/searching-on-github","title":"Searching on GitHub"},{"href":"/en/search-github/searching-on-github/searching-users","title":"Searching users"}],"documentType":"article"},"body":"# Searching users\n\nYou can search for users on GitHub and narrow the results using these user search qualifiers in any combination.\n\nYou can search for users globally across a GitHub platform, for example: across GitHub.com or across GitHub Enterprise Server.\n\nFor more information, see [About searching on GitHub](/en/search-github/getting-started-with-searching-on-github/about-searching-on-github).\n\n> \\[!TIP]\n>\n> * This article contains links to example searches on the GitHub.com website, but you can use the same search filters in any GitHub platform. In the linked example searches, replace `github.com` with the hostname for your GitHub platform.\n> * For a list of search syntaxes that you can add to any search qualifier to further improve your results, see [Understanding the search syntax](/en/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax).\n> * Use quotations around multi-word search terms. For example, if you want to search for issues with the label \"In progress,\" you'd search for `label:\"in progress\"`. Search is not case sensitive.\n\n## Search only users or organizations\n\nBy default, searching users will return both personal and organizations. However, you can use the `type` qualifier to restrict search results to personal accounts or organizations only.\n\n| Qualifier   | Example                                                                                                                                                                                                          |\n| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `type:user` | [**mike in:name created:<2011-01-01 type:user**](https://github.com/search?q=mike+in:name+created%3A%3C2011-01-01+type%3Auser\\&type=Users) matches personal accounts named \"mike\" that were created before 2011. |\n| `type:org`  | [**data in:email type:org**](https://github.com/search?q=data+in%3Aemail+type%3Aorg\\&type=Users) matches organizations with the word \"data\" in their email.                                                      |\n\n## Search by account name, full name, or public email\n\nYou can filter your search to the personal user or organization account name with `user` or `org` qualifiers.\n\nWith the `in` qualifier you can restrict your search to the username (`login`), full name, public email, or any combination of these. When you omit this qualifier, only the username and email address are searched. For privacy reasons, you cannot search by email domain name.\n\n| Qualifier                     | Example                                                                                                                                                                                             |\n| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `user:name`                   | [**user:octocat**](https://github.com/search?q=user%3Aoctocat\\&type=Users) matches the user with the username \"octocat\".                                                                            |\n| `org:name`                    | [**org:electron type:user**](https://github.com/search?q=org%3Aelectron+type%3Ausers\\&type=User) matches the Electron organization's account name.                                                  |\n| `in:login`                    | [**kenya in:login**](https://github.com/search?q=kenya+in%3Alogin\\&type=Users) matches users with the word \"kenya\" in their username.                                                               |\n| `in:name`                     | [**bolton in:name**](https://github.com/search?q=bolton+in%3Afullname\\&type=Users) matches users whose real name contains the word \"bolton.\"                                                        |\n| `fullname:firstname lastname` | [**fullname:nat friedman**](https://github.com/search?q=fullname%3Anat+friedman\\&type=Users) matches a user with the full name \"Nat Friedman.\" Note: This search qualifier is sensitive to spacing. |\n| `in:email`                    | [**data in:email**](https://github.com/search?q=data+in%3Aemail\\&type=Users\\&utf8=%E2%9C%93) matches users with the word \"data\" in their email.                                                     |\n\n## Search by number of repositories a user owns\n\nYou can filter users based on the number of repositories they own, using the `repos` qualifier and [greater than, less than, and range qualifiers](/en/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax).\n\n| Qualifier                                     | Example                                                                                                                                                                               |\n| --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| <code>repos:<em>n</em></code>                 | [**repos:>9000**](https://github.com/search?q=repos%3A%3E%3D9000\\&type=Users) matches users whose repository count is over 9,000.                                                     |\n| <em>`name`</em> <code>repos:<em>n</em></code> | [**bert repos:10..30**](https://github.com/search?q=bert+repos%3A10..30\\&type=Users) matches users with the word \"bert\" in their username or real name who own 10 to 30 repositories. |\n\n## Search by location\n\nYou can search for users by the location indicated in their profile.\n\n| Qualifier                               | Example                                                                                                                                                              |\n| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| <code>location:<em>LOCATION</em></code> | [**repos:1 location:iceland**](https://github.com/search?q=repos%3A1+location%3Aiceland\\&type=Users) matches users with exactly one repository that live in Iceland. |\n\n## Search by repository language\n\nUsing the `language` qualifier you can search for users based on the languages of repositories they own.\n\n| Qualifier                                                                       | Example                                                                                                                                                                                                              |\n| ------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| <code>language:<em>LANGUAGE</em></code> <code>location:<em>LOCATION</em></code> | [**language:javascript location:russia**](https://github.com/search?q=language%3Ajavascript+location%3Arussia\\&type=Users) matches users in Russia with a majority of their repositories written in JavaScript.      |\n| <em>`name`</em> <code>language:<em>LANGUAGE</em></code> `in:fullname`           | [**jenny language:javascript in:fullname**](https://github.com/search?q=jenny+language%3Ajavascript+in%3Afullname\\&type=Users) matches users with JavaScript repositories whose full name contains the word \"jenny.\" |\n\n## Search by when a personal account was created\n\nYou can filter users based on when they joined GitHub with the `created` qualifier. This takes a date as its parameter. Date formatting must follow the [ISO8601](http://en.wikipedia.org/wiki/ISO_8601) standard, which is `YYYY-MM-DD` (year-month-day). You can also add optional time information `THH:MM:SS+00:00` after the date, to search by the hour, minute, and second. That's `T`, followed by `HH:MM:SS` (hour-minutes-seconds), and a UTC offset (`+00:00`).\n\nWhen you search for a date, you can use greater than, less than, and range qualifiers to further filter results. For more information, see [Understanding the search syntax](/en/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax).\n\n| Qualifier                                                                        | Example                                                                                                                                                                                                                                 |\n| -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| <code>created:<em>YYYY-MM-DD</em></code>                                         | [**created:<2011-01-01**](https://github.com/search?q=created%3A%3C2011-01-01\\&type=Users) matches users that joined before 2011.                                                                                                       |\n| <code>created:>=<em>YYYY-MM-DD</em></code>                                       | [**created:>=2013-05-11**](https://github.com/search?q=created%3A%3E%3D2013-05-11\\&type=Users) matches users that joined at or after May 11th, 2013.                                                                                    |\n| <code>created:<em>YYYY-MM-DD</em></code> <code>location:<em>LOCATION</em></code> | [**created:2013-03-06 location:london**](https://github.com/search?q=created%3A2013-03-06+location%3Alondon\\&type=Users) matches users that joined on March 6th, 2013, who list their location as London.                               |\n| <code>created:<em>YYYY-MM-DD..YYYY-MM-DD</em></code> <em>`name`</em> `in:login`  | [**created:2010-01-01..2011-01-01 john in:login**](https://github.com/search?q=created%3A2010-01-01..2011-01-01+john+in%3Ausername\\&type=Users) matches users that joined between 2010 and 2011 with the word \"john\" in their username. |\n\n## Search by number of followers\n\nYou can filter users based on the number of followers that they have, using the `followers` qualifier with [greater than, less than, and range qualifiers](/en/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax).\n\n| Qualifier                                         | Example                                                                                                                                                                                |\n| ------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| <code>followers:<em>n</em></code>                 | [**followers:>=1000**](https://github.com/search?q=followers%3A%3E%3D1000\\&type=Users) matches users with 1,000 or more followers.                                                     |\n| <em>`name`</em> <code>followers:<em>n</em></code> | [**sparkle followers:1..10**](https://github.com/search?q=sparkle+followers%3A1..10\\&type=Users) matches users with between 1 and 10 followers, with the word \"sparkle\" in their name. |\n\n## Search based on ability to sponsor\n\nYou can search for users and organizations who can be sponsored on GitHub Sponsors with the `is:sponsorable` qualifier. For more information, see [About GitHub Sponsors](/en/sponsors/getting-started-with-github-sponsors/about-github-sponsors).\n\n| Qualifier        | Example                                                                                                                                            |\n| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `is:sponsorable` | [**is:sponsorable**](https://github.com/search?q=is%3Asponsorable\\&type=Users) matches users and organizations who have a GitHub Sponsors profile. |\n\n## Further reading\n\n* [Sorting search results](/en/search-github/getting-started-with-searching-on-github/sorting-search-results)"}