⚠️ WARNING: This documentation has been summarized by Claude (an AI language model) and is pending human review. Some information may be incomplete or require verification against official ORCID documentation.
ORCID (Open Researcher and Contributor ID) provides a persistent digital identifier that distinguishes researchers from one another. As the scholarly publishing landscape has evolved, concerns about research integrity and fraudulent submissions have grown. ORCID Trust Markers were developed to address these challenges by providing a way to verify the scholarly credentials of authors through validated information in their ORCID records.
This guide provides comprehensive information about ORCID Trust Markers, including how to understand and use them, technical implementation details, and best practices for different stakeholder groups.
ORCID Trust Markers are pieces of validated information in an ORCID record that have been added by trusted ORCID member organizations. These organizations include publishers, universities, funders, and other scholarly organizations.
Trust Markers help establish credibility by showing:
ORCID Trust Markers follow a distributed trust model, where the provenance of every assertion in a record is recorded and transparently disclosed. This allows users of ORCID data to determine for themselves which information they consider trustworthy for their specific use case.
Key Trust Markers include:
The ORCID Record Summary is a concise view of an ORCID record that highlights key information and Trust Markers. Record Summaries make it easier to quickly assess the scholarly credentials of a researcher.
A Record Summary includes:
Record Summaries only display information that has been set to public visibility by the ORCID record holder. Private or trusted-parties-only information is not included.
To view a Record Summary, click "Show record summary" on the right side of an ORCID record header.
Record Summaries visually distinguish between:
An empty or sparse Record Summary is not necessarily a sign of a problematic submission. Many valid researchers may have limited information in their ORCID records, especially early career researchers or those from regions with lower ORCID adoption.
Trust Markers can be a valuable tool in your editorial workflow to help verify author identities and detect potential fraudulent submissions. Here's how to use them effectively:
Several manuscript submission systems have integrated ORCID Record Summaries:
If your submission system offers ORCID integration, check if Record Summaries are available as part of the integration.
To access ORCID data programmatically, you'll need to use the ORCID API:
https://sandbox.orcid.org
) for development and testingORCID Record Summaries can be accessed through the API in two ways:
This returns the complete record with all public data:
GET https://api.sandbox.orcid.org/v3.0/[ORCID iD]/record
Headers:
Accept: application/vnd.orcid+xml or application/vnd.orcid+json
Authorization: Bearer [Access Token]
Access tokens can be obtained using OAuth for authenticated access.
Members can use the /summary
endpoint to specifically get record summary data:
GET https://api.sandbox.orcid.org/v3.0/[ORCID iD]/summary
Headers:
Accept: application/vnd.orcid+xml or application/vnd.orcid+json
Authorization: Bearer [Access Token]
To collect authenticated ORCID iDs and permissions:
https://sandbox.orcid.org/oauth/authorize?client_id=YOUR_CLIENT_ID&response_type=code&scope=/read-public&redirect_uri=YOUR_REDIRECT_URI
POST https://sandbox.orcid.org/oauth/token
grant_type=authorization_code&code=AUTHORIZATION_CODE&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET&redirect_uri=YOUR_REDIRECT_URI
ORCID member organizations can add validated information to ORCID records:
/activities/update
or /person/update
)/work
for publications, /employment
for affiliations)By adding data to ORCID records, your organization becomes a source of Trust Markers, contributing to the trustworthiness of the scholarly record.
Q: What if an ORCID record has few or no Trust Markers?
A: This doesn't necessarily indicate a problem. Many valid researchers have sparse ORCID records, especially early career researchers or those from regions with lower ORCID adoption. Consider other verification methods.
Q: Can researchers add their own Trust Markers?
A: No, Trust Markers must be added by trusted ORCID member organizations. Researchers can self-assert information, but these will not appear as Trust Markers.
Q: How can I increase Trust Markers in my ORCID record?
A: Connect your ORCID iD with trusted organizations (publishers, institutions, funders) and grant them permission to update your record. Use your ORCID iD consistently when submitting papers or grant applications.
Q: How can my organization become a source of Trust Markers?
A: Join ORCID as a member and implement the Member API to assert validated information to ORCID records.
Q: Are Record Summaries only for detecting fraudulent submissions?
A: No, they have many uses, including simplifying researcher evaluation, streamlining grant applications, and making it easier to understand a researcher's background and contributions.