Skip to main content
POST
/
api
/
core
/
journals
/core/journals
curl --request POST \
  --url https://api.anysite.io/api/core/journals \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "issn": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@core_journal",
    "title": "<string>",
    "publisher": "<string>",
    "language": "<string>",
    "identifiers": [],
    "subjects": [],
    "data_provider_id": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
issn
string
required

Journal ISSN (e.g. '2167-8359')

Minimum string length: 1
Examples:

"2167-8359"

"issn:2167-8359"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@core_journal
title
string | null
publisher
string | null
language
string | null
identifiers
string[]
subjects
string[]
data_provider_id
integer | null