Get a single institution
It's easy to get an institution from from the API with:/institutions/<entity_id>
. Here's an example:
Get the institution with theOpenAlex ID
I27837315
:https://api.openalex.org/institutions/I27837315
That will return anInstitution
object, describing everything OpenAlex knows about the institution with that ID:
{"id":"https://openalex.org/I27837315","ror":"https://ror.org/00jmfr291","display_name":"University of Michigan–Ann Arbor","country_code":"US","type":"education",// other fields removed for brevity}
You can make up to 50 of these queries at once byrequesting a list of entities and filtering on IDs using OR syntax.
External IDs
You can look up institutions using external IDs such as aROR ID:
Get the institution with ROR ID
https://ror.org/00cvxb145
:https://api.openalex.org/institutions/ror:https://ror.org/00cvxb145
Available external IDs for institutions are:
ROR
ror
Microsoft Academic Graph (MAG)
mag
Wikidata
wikidata
Select fields
You can useselect
to limit the fields that are returned in an institution object. More details arehere.
Display only the
id
anddisplay_name
for an institution objecthttps://api.openalex.org/institutions/I27837315?select=id,display_name
Last updated