Comment on page
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
You can use
sample
to get a random batch of institutions. Read more about sampling and how to add a seed
value here.You can use
select
to limit the fields that are returned in a list of institutions. More details are here.- Display only the
id
,ror
, anddisplay_name
within institutions results https://api.openalex.org/institutions?select=id,display_name,ror
Last modified 9mo ago