powered by
Fetches just the biography/about text for an ORCID record. This is a simplified alternative to orcid_person when you only need the biography text.
orcid_person
orcid_bio(orcid_id, token = NULL)
A data.table with the following columns:
ORCID identifier
Biography text
Visibility setting (public, limited, private)
Returns a data.table with NA biography if not available.
Character string. A valid ORCID identifier in the format XXXX-XXXX-XXXX-XXXX. Can also handle URLs like https://orcid.org/XXXX-XXXX-XXXX-XXXX.
Character string or NULL. Optional API token for authenticated requests. If NULL (default), checks the ORCID_TOKEN environment variable.
This function queries the ORCID public API endpoint: https://pub.orcid.org/v3.0/{orcid-id}/biography
https://pub.orcid.org/v3.0/{orcid-id}/biography
ORCID API Documentation: https://info.orcid.org/documentation/api-tutorials/
if (FALSE) { # Fetch biography only bio <- orcid_bio("0000-0002-1825-0097") print(bio$biography) }
Run the code above in your browser using DataLab