powered by
Fetches professional and personal URLs associated with an ORCID record, such as personal websites, institutional profiles, social media, etc.
orcid_researcher_urls(orcid_id, token = NULL)
A data.table with the following columns:
ORCID identifier
Unique identifier for this URL
Name/label for the URL
The actual URL
Returns an empty data.table with the same structure if no URLs are found.
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}/researcher-urls
https://pub.orcid.org/v3.0/{orcid-id}/researcher-urls
ORCID API Documentation: https://info.orcid.org/documentation/api-tutorials/
orcid_person, orcid_external_identifiers
orcid_person
orcid_external_identifiers
if (FALSE) { # Fetch researcher URLs urls <- orcid_researcher_urls("0000-0002-1825-0097") print(urls) }
Run the code above in your browser using DataLab