Skip to main content
POST
/
api
/
biorxiv
/
preprints
/biorxiv/preprints
curl --request POST \
  --url https://api.anysite.io/api/biorxiv/preprints \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "doi": "<string>",
  "timeout": 300,
  "server": "biorxiv"
}
'
[
  {
    "doi": "<string>",
    "title": "<string>",
    "@type": "@biorxiv_preprint",
    "authors": "<string>",
    "author_corresponding": "<string>",
    "author_corresponding_institution": "<string>",
    "version": 123,
    "date": "<string>",
    "type": "<string>",
    "license": "<string>",
    "category": "<string>",
    "abstract": "<string>",
    "funders": [],
    "jatsxml_url": "<string>",
    "published_doi": "<string>",
    "server": "<string>",
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
doi
string
required

Preprint DOI

Minimum string length: 1
Example:

"10.1101/2020.09.09.20191205"

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

doi
string
required
title
string
required
@type
string
default:@biorxiv_preprint
authors
string | null
author_corresponding
string | null
author_corresponding_institution
string | null
version
integer | null
date
string | null
type
string | null
license
string | null
category
string | null
abstract
string | null
funders
BiorxivFunder · object[]
jatsxml_url
string | null
published_doi
string | null
server
string | null
web_url
string | null