Skip to main content
POST
/
api
/
orcid
/
researchers
/
works
/orcid/researchers/works
curl --request POST \
  --url https://api.anysite.io/api/orcid/researchers/works \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "orcid": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@orcid_work",
    "put_code": 123,
    "title": "<string>",
    "subtitle": "<string>",
    "type": "<string>",
    "journal_title": "<string>",
    "publication_date": "<string>",
    "short_description": "<string>",
    "citation_type": "<string>",
    "citation": "<string>",
    "language_code": "<string>",
    "country": "<string>",
    "url": "<string>",
    "external_ids": [],
    "contributors": []
  }
]

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"

count
integer
required

Number of works to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@orcid_work
put_code
integer | null
title
string | null
subtitle
string | null
type
string | null
journal_title
string | null
publication_date
string | null
short_description
string | null
citation_type
string | null
citation
string | null
language_code
string | null
country
string | null
url
string | null
external_ids
OrcidExternalId · object[]
contributors
OrcidWorkContributor · object[]