Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 2.01 KB

get-a-single-institution.md

File metadata and controls

41 lines (28 loc) · 2.01 KB

Get a single institution

It's easy to get an institution from from the API with: /institutions/<entity_id>. Here's an example:

That will return an Institution 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
}

{% hint style="info" %} You can make up to 50 of these queries at once by requesting a list of entities and filtering on IDs using OR syntax. {% endhint %}

External IDs

You can look up institutions using external IDs such as a ROR ID:

Available external IDs for institutions are:

External IDURN
RORror
Microsoft Academic Graph (MAG)mag
Wikidatawikidata

Select fields

You can use select to limit the fields that are returned in an institution object. More details are here.