Get lists of publishers
You can get lists of publishers:
Get all publishers in OpenAlex https://api.openalex.org/publishers
Which returns a response like this:
Page and sort publishers
By default we return 25 results per page. You can change this default and page through publishers with the per-page
and page
parameters:
Get the second page of publishers results, with 50 results returned per page https://api.openalex.org/publishers?per-page=50&page=2
You also can sort results with the sort
parameter:
Sort publishers by display name, descending https://api.openalex.org/publishers?sort=display_name:desc
Continue on to learn how you can filter and search lists of publishers.
Sample publishers
You can use sample
to get a random batch of publishers. Read more about sampling and how to add a seed
value here.
Get 10 random publishers https://api.openalex.org/publishers?sample=10
Select fields
You can use select
to limit the fields that are returned in a list of publishers. More details are here.
Display only the
id
,display_name
, andalternate_titles
within publishers results https://api.openalex.org/publishers?select=id,display_name,alternate_titles
Last updated