Skip to main content
POST
/
api
/
zenodo
/
records
/zenodo/records
curl --request POST \
  --url https://api.anysite.io/api/zenodo/records \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "record": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "@type": "@zenodo_record",
    "doi": "<string>",
    "doi_url": "<string>",
    "concept_doi": "<string>",
    "concept_recid": "<string>",
    "swhid": "<string>",
    "title": "<string>",
    "description": "<string>",
    "publication_date": "<string>",
    "access_right": "<string>",
    "version": "<string>",
    "language": "<string>",
    "license": "<string>",
    "notes": "<string>",
    "state": "<string>",
    "status": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "resource_type": {
      "@type": "@zenodo_resource_type",
      "type": "<string>",
      "subtype": "<string>",
      "title": "<string>"
    },
    "creators": [],
    "contributors": [],
    "keywords": [],
    "subjects": [],
    "communities": [],
    "grants": [],
    "related_identifiers": [],
    "references": [],
    "dates": [],
    "files": [],
    "stats": {
      "@type": "@zenodo_stats",
      "downloads": 123,
      "unique_downloads": 123,
      "views": 123,
      "unique_views": 123,
      "version_downloads": 123,
      "version_unique_downloads": 123,
      "version_views": 123,
      "version_unique_views": 123
    },
    "is_latest_version": true,
    "version_index": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
record
string
required

Zenodo record ID, record URL, or DOI

Minimum string length: 1
Examples:

"7347926"

"https://zenodo.org/records/7347926"

"10.5281/zenodo.7347926"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
url
string
required
@type
string
default:@zenodo_record
doi
string | null
doi_url
string | null
concept_doi
string | null
concept_recid
string | null
swhid
string | null
title
string | null
description
string | null
publication_date
string | null
access_right
string | null
version
string | null
language
string | null
license
string | null
notes
string | null
state
string | null
status
string | null
created_at
string | null
updated_at
string | null
resource_type
ZenodoResourceType · object
creators
ZenodoCreator · object[]
contributors
ZenodoCreator · object[]
keywords
string[]
subjects
ZenodoSubject · object[]
communities
string[]
grants
ZenodoGrant · object[]
references
string[]
dates
ZenodoRecordDate · object[]
files
ZenodoFile · object[]
stats
ZenodoStats · object
is_latest_version
boolean | null
version_index
integer | null