Skip to main content
POST
/
api
/
orcid
/
researchers
/orcid/researchers
curl --request POST \
  --url https://api.anysite.io/api/orcid/researchers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "orcid": "<string>",
  "timeout": 300
}
'
[
  {
    "orcid": "<string>",
    "@type": "@orcid_researcher",
    "given_name": "<string>",
    "family_name": "<string>",
    "credit_name": "<string>",
    "other_names": [],
    "biography": "<string>",
    "keywords": [],
    "researcher_urls": [],
    "emails": [],
    "countries": [],
    "external_identifiers": [],
    "employments": [],
    "educations": [],
    "distinctions": [],
    "memberships": [],
    "qualifications": [],
    "services": [],
    "invited_positions": [],
    "works": [],
    "fundings": [],
    "peer_reviews": [],
    "work_count": 0,
    "created_at": 123,
    "last_modified_at": 123,
    "claimed": true,
    "verified_email": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
orcid
string
required

ORCID iD of the researcher. Accepts the bare id, a dashed id, or the full orcid.org URL.

Minimum string length: 1
Examples:

"0000-0001-6187-6610"

"https://orcid.org/0000-0001-6187-6610"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

orcid
string
required
@type
string
default:@orcid_researcher
given_name
string | null
family_name
string | null
credit_name
string | null
other_names
string[]
biography
string | null
keywords
string[]
researcher_urls
OrcidResearcherUrl · object[]
emails
string[]
countries
string[]
external_identifiers
OrcidPersonExternalId · object[]
employments
OrcidAffiliation · object[]
educations
OrcidAffiliation · object[]
distinctions
OrcidAffiliation · object[]
memberships
OrcidAffiliation · object[]
qualifications
OrcidAffiliation · object[]
services
OrcidAffiliation · object[]
invited_positions
OrcidAffiliation · object[]
works
OrcidWorkSummary · object[]
fundings
OrcidFundingSummary · object[]
peer_reviews
OrcidPeerReviewSummary · object[]
work_count
integer
default:0
created_at
integer | null
last_modified_at
integer | null
claimed
boolean | null
verified_email
boolean | null