Skip to contents

Get detailed information about a specific dataset from Zenodo.

Usage

dataset_info(record_id, sandbox = FALSE)

Arguments

record_id

Zenodo record ID (numeric or character)

sandbox

If TRUE, query sandbox.zenodo.org

Value

A list with dataset details including:

  • record_id: Zenodo record ID

  • title: Dataset title

  • doi: Dataset DOI

  • version: Version string

  • description: Full description

  • creators: List of creators

  • created: Creation date

  • files: Tibble of available files with names and sizes

  • keywords: Character vector of keywords

  • license: License identifier

Examples

if (FALSE) { # \dontrun{
# Get info from sandbox test dataset
dataset_info(415123, sandbox = TRUE)

# Get info from production dataset
dataset_info(12345678)
} # }