Skip to main content
POST
/
api
/
biorxiv
/
preprints
/
published
/biorxiv/preprints/published
curl --request POST \
  --url https://api.anysite.io/api/biorxiv/preprints/published \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "date_from": "<string>",
  "date_to": "<string>",
  "count": 2,
  "timeout": 300,
  "server": "biorxiv"
}
'
[
  {
    "preprint_doi": "<string>",
    "@type": "@biorxiv_published_preprint",
    "published_doi": "<string>",
    "published_journal": "<string>",
    "preprint_title": "<string>",
    "preprint_authors": "<string>",
    "preprint_author_corresponding": "<string>",
    "preprint_author_corresponding_institution": "<string>",
    "preprint_category": "<string>",
    "preprint_date": "<string>",
    "published_date": "<string>",
    "preprint_abstract": "<string>",
    "preprint_platform": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
date_from
string
required

Start of the publication-date interval (yyyy-mm-dd)

Example:

"2024-01-01"

date_to
string
required

End of the publication-date interval (yyyy-mm-dd)

Example:

"2024-01-10"

count
integer
required

Number of preprint-to-publication links to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
server
enum<string>
default:biorxiv

Preprint server

Available options:
biorxiv,
medrxiv

Response

Successful Response

preprint_doi
string
required
@type
string
default:@biorxiv_published_preprint
published_doi
string | null
published_journal
string | null
preprint_title
string | null
preprint_authors
string | null
preprint_author_corresponding
string | null
preprint_author_corresponding_institution
string | null
preprint_category
string | null
preprint_date
string | null
published_date
string | null
preprint_abstract
string | null
preprint_platform
string | null