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
  • affiliations
  • author
  • author_position
  • countries
  • institutions
  • is_corresponding
  • raw_affiliation_strings
  • raw_author_name
  1. API Entities
  2. Works
  3. Work object

Authorship object

PreviousWork objectNextLocation object

Last updated 10 months ago

The Authorship object represents a single author and her institutional affiliations in the context of a given work. It is only found as part of a Work object, in the property.

affiliations

List: List of objects

Each institutional affiliation that this author has claimed will be listed here: the raw affiliation string that we found, along with the OpenAlex ID or IDs that we matched it to.

This information will be redundant with below, but is useful if you need to know about what we used to match institutions.

affiliations: [
    {
        raw_affiliation_string: "Scholarly Communications Lab, Simon Fraser University, Vancouver, Canada",
        institution_ids: [
            "https://openalex.org/I18014758"
        ]
    }
]

author

String: An author of this work, as a dehydrated object.

Note that, sometimes, we assign ORCID using , so the ORCID we associate with an author was not necessarily included with this work.

author: {
    id: "https://openalex.org/A5085171399",
    display_name: "Juan Pablo Alperin",
    orcid: "https://orcid.org/0000-0002-9344-7439"
}

author_position

String: A summarized description of this author's position in the work's author list. Possible values are first, middle, and last.

It's not strictly necessary, because author order is already implicitly recorded by the list order of Authorship objects; however it's useful in some contexts to have this as a categorical value.

author_position: "first"

countries

List: The country or countries for this author.

We determine the countries using a combination of matched institutions and parsing of the raw affiliation strings, so we can have this information for some authors even if we do not have a specific institutional affiliation.

countries: [
    "US"
]

institutions

institutions: [
    {
        id: "https://openalex.org/I18014758",
        display_name: "Simon Fraser University",
        ror: "https://ror.org/0213rcc28",
        country_code: "CA",
        type: "education",
        lineage: ["https://openalex.org/I18014758"]
    }
]

is_corresponding

Boolean: If true, this is a corresponding author for this work.

This is a new feature, and the information may be missing for many works. We are working on this, and coverage will improve soon.

raw_affiliation_strings

List: This author's affiliation as it originally came to us (on a webpage or in an API), as a list of raw unformatted strings. If there is only one affiliation, it will be a list of length one.

raw_affiliation_strings: [
    "Canadian Institute for Studies in Publishing, Simon Fraser University"
],

raw_author_name

String: This author's name as it originally came to us (on a webpage or in an API), as a raw unformatted string.

raw_author_name: "Juan Pablo Alperin"

List: The institutional affiliations this author claimed in the context of this work, as objects.

📄
Institution
Author
author disambiguation
institutions
work.authorships
dehydrated Institution