Skip to main content
POST
/
api
/
openalex
/
sources
/openalex/sources
curl --request POST \
  --url https://api.anysite.io/api/openalex/sources \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "source": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@openalex_source",
    "display_name": "",
    "issn_l": "<string>",
    "issn": [],
    "type": "<string>",
    "is_oa": true,
    "is_in_doaj": true,
    "is_core": true,
    "host_organization_name": "<string>",
    "homepage_url": "<string>",
    "country_code": "<string>",
    "works_count": 0,
    "oa_works_count": 123,
    "cited_by_count": 0,
    "apc_usd": 123,
    "apc_prices": [],
    "summary_stats": {
      "@type": "@openalex_summary_stats",
      "two_year_mean_citedness": 123,
      "h_index": 123,
      "i10_index": 123
    },
    "topics": [],
    "counts_by_year": [],
    "works_api_url": "<string>",
    "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
source
string
required

Source identifier: OpenAlex id (S...) or a prefixed ISSN (issn:)

Minimum string length: 1
Examples:

"S137773608"

"issn:0028-0836"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@openalex_source
display_name
string
default:""
issn_l
string | null
issn
string[]
type
string | null
is_oa
boolean | null
is_in_doaj
boolean | null
is_core
boolean | null
host_organization_name
string | null
homepage_url
string | null
country_code
string | null
works_count
integer
default:0
oa_works_count
integer | null
cited_by_count
integer
default:0
apc_usd
integer | null
apc_prices
OpenalexApcPrice · object[]
summary_stats
OpenalexSummaryStats · object
topics
OpenalexTopic · object[]
counts_by_year
OpenalexCountByYear · object[]
works_api_url
string | null
updated_at
string | null
created_at
string | null