Skip to main content
POST
/
api
/
openalex
/
publishers
/
search
/openalex/publishers/search
curl --request POST \
  --url https://api.anysite.io/api/openalex/publishers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "search": "<string>",
  "country_code": "US"
}
'
[
  {
    "id": "<string>",
    "@type": "@openalex_publisher",
    "display_name": "",
    "alternate_titles": [],
    "hierarchy_level": 123,
    "country_codes": [],
    "homepage_url": "<string>",
    "image": "<string>",
    "works_count": 0,
    "cited_by_count": 0,
    "summary_stats": {
      "@type": "@openalex_summary_stats",
      "two_year_mean_citedness": 123,
      "h_index": 123,
      "i10_index": 123
    },
    "ror": "<string>",
    "counts_by_year": [],
    "updated_at": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of publishers to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
search
string | null

Search query across publisher names

country_code
string | null

ISO country code of the publisher

Example:

"US"

sort
enum<string> | null

Result ordering

Available options:
relevance_score:desc,
works_count:desc,
cited_by_count:desc

Response

Successful Response

id
string
required
@type
string
default:@openalex_publisher
display_name
string
default:""
alternate_titles
string[]
hierarchy_level
integer | null
country_codes
string[]
homepage_url
string | null
image
string | null
works_count
integer
default:0
cited_by_count
integer
default:0
summary_stats
OpenalexSummaryStats · object
ror
string | null
counts_by_year
OpenalexCountByYear · object[]
updated_at
string | null
created_at
string | null