Skip to main content
POST
/
api
/
crossref
/
journals
/
search
/crossref/journals/search
curl --request POST \
  --url https://api.anysite.io/api/crossref/journals/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@crossref_journal",
    "title": "<string>",
    "publisher": "<string>",
    "issn": [],
    "print_issn": "<string>",
    "electronic_issn": "<string>",
    "subjects": [],
    "counts": {
      "@type": "@crossref_counts",
      "current_dois": 0,
      "backfile_dois": 0,
      "total_dois": 0
    },
    "last_status_check_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query for journals

Minimum string length: 1
Examples:

"psychology"

"nature"

count
integer
required

Number of journals to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@crossref_journal
title
string | null
publisher
string | null
issn
string[]
print_issn
string | null
electronic_issn
string | null
subjects
string[]
counts
CrossrefCounts · object
last_status_check_at
integer | null