Catalog/scholar-org-profile

Science

Resolve an org name to its ROR id + research profile (OpenAlex) API

Resolves a research organisation name to its canonical ROR id, country and type, plus a research profile (works, citations, h-index, top topics) via OpenAlex /institutions. Answers 'what is the ROR id for this university?', 'how research-active is this institution and in what fields?'. (Uses OpenAlex for resolution because ROR's own search endpoint was returning broken results at build time.)

Price$0.01per request
MethodPOST
Route/v1/science/scholar-org-profile
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
sciencescholarrorinstitutionorganizationopenalexresearch-profileresolve
API URLhttps://x402.hexl.dev/v1/science/scholar-org-profile
Integration docs
Example request
{
  "query": "Stanford University"
}
Example response
{
  "query": "Stanford University",
  "matched": true,
  "name": "Stanford University",
  "rorId": "https://ror.org/00f54p054",
  "openAlexId": "https://openalex.org/I97018004",
  "country": "US",
  "type": "education",
  "worksCount": 521378,
  "citedByCount": 85351576,
  "hIndex": 2463,
  "i10Index": 651426,
  "topTopics": [
    "Particle physics theoretical and experimental studies",
    "Immune Cell Function and Interaction"
  ],
  "homepage": "https://www.stanford.edu",
  "otherMatches": [
    {
      "name": "Stanford Medicine",
      "ror": "https://ror.org/03mtd9a03",
      "country": "US"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Organisation name, e.g. 'Stanford University'"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}