Catalog/data-orcid

Data

ORCID iD to researcher profile API

Resolve an ORCID iD to a flattened researcher profile via the ORCID public API: name, biography, country, keywords, external links, summarized employment and education affiliations, plus a works summary (count + most recent titles). The value-add is collapsing ORCID's deeply nested record into one clean schema. Answers 'who is ORCID 0000-0002-1825-0097', 'what has this researcher published', 'where does this researcher work', 'this author's affiliations'.

Price$0.01per request
MethodPOST
Route/v1/data/orcid
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
dataorcidresearcherauthorscholarlyacademicprofileaffiliation
API URLhttps://x402.hexl.dev/v1/data/orcid
Integration docs
Example request
{
  "orcid": "0000-0002-1825-0097"
}
Example response
{
  "orcid": "0000-0002-1825-0097",
  "url": "https://orcid.org/0000-0002-1825-0097",
  "name": "Josiah Carberry",
  "biography": null,
  "country": null,
  "keywords": [
    "psychoceramics"
  ],
  "links": [],
  "employments": [
    {
      "organization": "Wesleyan University",
      "role": "Professor",
      "department": "Psychoceramics",
      "country": null,
      "startYear": null,
      "endYear": null
    }
  ],
  "educations": [],
  "worksCount": 6,
  "recentWorks": [
    {
      "title": "A Methodology for the Emulation of Architecture",
      "type": "journal-article",
      "year": "2012"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "orcid"
  ],
  "properties": {
    "orcid": {
      "type": "string",
      "examples": [
        "0000-0002-1825-0097"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}