Old OpenAlex API documentation
  • Overview
  • Quickstart tutorial
  • API Entities
    • Entities overview
    • 📄Works
      • Work object
        • Authorship object
        • Location object
      • Get a single work
      • Get lists of works
      • Filter works
      • Search works
      • Group works
      • Get N-grams
    • 👩Authors
      • Author object
      • Get a single author
      • Get lists of authors
      • Filter authors
      • Search authors
      • Group authors
      • Limitations
      • Author disambiguation
    • 📚Sources
      • Source object
      • Get a single source
      • Get lists of sources
      • Filter sources
      • Search sources
      • Group sources
    • 🏫Institutions
      • Institution object
      • Get a single institution
      • Get lists of institutions
      • Filter institutions
      • Search institutions
      • Group institutions
    • 💡Topics
      • Topic object
      • Get a single topic
      • Get lists of topics
      • Filter topics
      • Search topics
      • Group topics
    • 🗝️Keywords
    • 🏢Publishers
      • Publisher object
      • Get a single publisher
      • Get lists of publishers
      • Filter publishers
      • Search publishers
      • Group publishers
    • 💰Funders
      • Funder object
      • Get a single funder
      • Get lists of funders
      • Filter funders
      • Search funders
      • Group funders
    • 🌎Geo
      • Continents
      • Regions
    • 💡Concepts
      • Concept object
      • Get a single concept
      • Get lists of concepts
      • Filter concepts
      • Search concepts
      • Group concepts
    • Aboutness endpoint (/text)
  • How to use the API
    • API Overview
    • Get single entities
      • Random result
      • Select fields
    • Get lists of entities
      • Paging
      • Filter entity lists
      • Search entities
      • Sort entity lists
      • Select fields
      • Sample entity lists
      • Autocomplete entities
    • Get groups of entities
    • Rate limits and authentication
  • Download all data
    • OpenAlex snapshot
    • Snapshot data format
    • Download to your machine
    • Upload to your database
      • Load to a data warehouse
      • Load to a relational database
        • Postgres schema diagram
  • Additional Help
    • Tutorials
    • Report bugs
    • FAQ
Powered by GitBook
On this page
  • External IDs
  • Select fields
  1. API Entities
  2. Authors

Get a single author

PreviousAuthor objectNextGet lists of authors

Last updated 1 year ago

It's easy to get an author from from the API with: /authors/<entity_id>. Here's an example:

  • Get the author with the A5023888391:

That will return an object, describing everything OpenAlex knows about the author with that ID:

{
    "id": "https://openalex.org/A5023888391",
    "orcid": "https://orcid.org/0000-0001-6187-6610",
    "display_name": "Jason Priem",
    "display_name_alternatives": [],
    "works_count": 53,
    // other fields removed for brevity
}

You can make up to 50 of these queries at once by .

Authors are also available via an alias: /people

External IDs

You can look up authors using external IDs such as an ORCID:

  • Get the author with this ORCID: https://orcid.org/0000-0002-1298-3089:

You can use the full ID or a shorter Uniform Resource Name (URN) format like so:

Available external IDs for authors are:

External ID
URN

ORCID

orcid

Scopus

scopus

Twitter

twitter

Wikipedia

wikipedia

Select fields

You can use select to limit the fields that are returned in an author object. More details are .

Display only the id and display_name and orcid for an author object

👩
here
https://api.openalex.org/authors/A5023888391?select=id,display_name,orcid
https://api.openalex.org/authors/A5023888391
Author
https://api.openalex.org/authors/https://orcid.org/0000-0002-1298-3089
https://api.openalex.org/authors/orcid:0000-0002-1298-3089
OpenAlex ID
requesting a list of entities and filtering on IDs using OR syntax