Get a single funder
It's easy to get a funder from from the API with: /funders/<entity_id>
. Here's an example:
Get the funder with the OpenAlex ID
F4320332161
: https://api.openalex.org/funders/F4320332161
That will return a Funder
object, describing everything OpenAlex knows about the funder with that ID:
You can make up to 50 of these queries at once by requesting a list of entities and filtering on IDs using OR syntax.
External IDs
You can look up funders using external IDs such as a Wikidata ID:
Get the funder with Wikidata ID Q1479654:
https://api.openalex.org/funders/wikidata:Q390551
Available external IDs for funders are:
External ID | URN |
---|---|
ROR |
|
Wikidata |
|
Select fields
You can use select
to limit the fields that are returned in a funder object. More details are here.
Display only the
id
anddisplay_name
for a funder objecthttps://api.openalex.org/funders/F4320332161?select=id,display_name
Last updated