Filter authors
You can filter authors with the filter parameter:
- Get authors that have an ORCID https://api.openalex.org/authors?filter=has_orcid:true 
/authors attribute filters
/authors attribute filtersYou can filter using these attributes of the Author entity object (click each one to view their documentation on the Author object page):
- ids.openalex(alias:- openalex)
- scopus(the author's scopus ID, as an integer)
- summary_stats.2yr_mean_citedness(accepts float, null, !null, can use range queries such as < >)
- summary_stats.h_index(accepts integer, null, !null, can use range queries)
- summary_stats.i10_index(accepts integer, null, !null, can use range queries)
- x_concepts.id(alias:- concepts.idor- concept.id) -- will be deprecated soon
/authors convenience filters
/authors convenience filtersThese filters aren't attributes of the Author object, but they're included to address some common use cases:
default.search
default.searchValue: a search string
This works the same as using the search parameter for Authors.
display_name.search
display_name.searchValue: a search string
Returns: Authors whose display_name contains the given string; see the search filter for details.
- Get authors named "tupolev": - https://api.openalex.org/authors?filter=display_name.search:tupolev
has_orcid
has_orcidValue: a Boolean (true or false)
Returns: authors that have or lack an orcid, depending on the given value.
- Get the authors that have an ORCID: `` - https://api.openalex.org/authors?filter=has_orcid:true
last_known_institution.continent
last_known_institution.continentValue: a String with a valid continent filter
Returns: authors where where the last known institution is in the chosen continent.
- Get authors where the last known institution is located in Africa https://api.openalex.org/authors?filter=last_known_institution.continent:africa 
last_known_institution.is_global_south
last_known_institution.is_global_southValue: a Boolean (true or false)
Returns: works where at least one of the author's institutions is in the Global South.
- Get authors where the last known institution is located in the Global South https://api.openalex.org/authors?filter=last_known_institution.is_global_south:true 
Last updated

