Get lists of institutions
You can get lists of institutions:
Which returns a response like this:
{
"meta": {
"count": 108618,
"db_response_time_ms": 32,
"page": 1,
"per_page": 25
},
"results": [
{
"id": "https://openalex.org/I27837315",
"ror": "https://ror.org/00jmfr291",
"display_name": "University of Michigan–Ann Arbor",
// more fields (removed to save space)
},
{
"id": "https://openalex.org/I201448701",
"ror": "https://ror.org/00cvxb145",
"display_name": "University of Washington",
// more fields (removed to save space)
},
// more results (removed to save space)
],
"group_by": []
}
By default we return 25 results per page. You can change this default and page through institutions with the
per-page
and page
parameters:- Get the second page of institutions results, with 50 results returned per page https://api.openalex.org/institutions?per-page=50&page=2
- Sort institutions by cited by count, descending https://api.openalex.org/institutions?sort=cited_by_count:desc
Last modified 24d ago