/authors endpoint gives you access to enriched researcher profiles aggregated from OpenAlex and other sources. Each profile bundles citation metrics, total publication counts, ORCID identifiers, and a full institutional affiliation history into a single record — everything you need to build researcher directories, co-authorship graphs, or bibliometric dashboards without stitching together multiple upstream sources yourself.
Search for Authors
Use thesearch query parameter to find authors by name. Results are ranked by relevance and include basic metrics so you can identify the right researcher at a glance.
id, display name, total citations received across all works, and a count of indexed outputs.
Fetch Author by ID
When you have a specific author’s OA:ID, retrieve their complete profile withGET /authors/{id}.
orcid field and expands the affiliations array with structured institution objects containing both an id and a human-readable name.
Working with ORCID
When available, theorcid field contains the author’s fully qualified ORCID URI (e.g. https://orcid.org/0000-0002-1825-0097). ORCID is a persistent, researcher-controlled identifier that remains stable across institutional changes and name variations.
You can use the ORCID value to cross-reference Hexagraph records with other scholarly systems — for example, looking up a researcher’s full ORCID profile, querying the Crossref API, or linking records in your own database. Not all authors have a verified ORCID; when one is unavailable the field is returned as null.
Author Affiliations
Theaffiliations array documents every institution associated with the author’s indexed works. Each entry in the array is an object containing a single institution key, which itself carries:
| Field | Type | Description |
|---|---|---|
id | string | The institution’s Hexagraph OA:ID (OA:I prefix) |
name | string | The institution’s display name |
Via GraphQL
You can retrieve the same full profile through Hexagraph’s GraphQL endpoint, with the added benefit of specifying exactly which fields you need:https://hexagraph-core.onrender.com/graphql, or paste it directly into the interactive GraphQL playground. See the GraphQL Queries guide for more details on batching author and output lookups in a single request.
Author data is sourced from OpenAlex’s disambiguated author profiles. An author may have multiple works attributed to them across different affiliated institutions. In rare cases where disambiguation is uncertain, two distinct author records may exist for the same real-world researcher — use the
orcid field as the authoritative cross-reference when precision matters.