Search funders
The best way to search for funders is to use the search
query parameter, which searches the display_name
, the alternate_titles
, and the description
fields. Example:
Search funders'
display_name
,alternate_titles
, anddescription
for "health":https://api.openalex.org/funders?search=health
You can read more about search here. It will show you how relevance score is calculated, how words are stemmed to improve search results, and how to do complex boolean searches.
Search a specific field
You can also use search as a filter, allowing you to fine-tune the fields you're searching over. To do this, you append .search
to the end of the property you are filtering for:
Get funders with "florida" in the
display_name
:https://api.openalex.org/funders?filter=display_name.search:florida
The following fields can be searched as a filter within funders:
Search filter | Field that is searched |
---|---|
You can also use the filter default.search
, which works the same as using the search
parameter.
Autocomplete funders
You can autocomplete funders to create a very fast type-ahead style search function:
Autocomplete funders with "national sci" in the
display_name
: https://api.openalex.org/autocomplete/funders?q=national+sci
This returns a list of funders with the funder location set as the hint:
Read more in the autocomplete page in the API guide.
Last updated