Skip to contents

Retrieve an OpenAlex person record

Usage

openalex_get_person(
  person_id,
  openalex_api_author_by_id = zirconia::opts$get("openalex_api_author_by_id")
)

Arguments

person_id

The ROR identifier.

openalex_api_author

The URL to the OpenAlex API, containing %s where the person identifier should be inserted.

Value

The object with author information.

Examples

if (FALSE) { # \dontrun{
### Retrieve a person's record (requires an internet connection!)
personRecord <-
  zirconia::openalex_get_person("a5102165008");

### Show the person's name and identifier
personRecord;
} # }