get_authors
Retrieve author details for any academic paper using paper IDs like DOI, arXiv, or Semantic Scholar ID. Customize the returned data with fields such as name, affiliations, and citation count.
Instructions
Get authors information for a specific paper. Use 'fields' parameter to customize author data returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paper_id | Yes | The following types of IDs are supported: - `<sha>` - a Semantic Scholar ID, e.g. `649def34f8be52c8b66281af98ae884c09aef38b` - `CorpusId:<id>` - a Semantic Scholar numerical ID, e.g. `CorpusId:215416146` - `DOI:<doi>` - a Digital Object Identifier, e.g. `DOI:10.18653/v1/N18-3011` - `ARXIV:<id>` - arXiv.rg, e.g. `ARXIV:2106.15928` - `MAG:<id>` - Microsoft Academic Graph, e.g. `MAG:112218234` - `ACL:<id>` - Association for Computational Linguistics, e.g. `ACL:W12-3903` - `PMID:<id>` - PubMed/Medline, e.g. `PMID:19872477` - `PMCID:<id>` - PubMed Central, e.g. `PMCID:2323736` - `URL:<url>` - URL from one of the sites listed below, e.g. `URL:https://arxiv.org/abs/2106.15928v1` URLs are recognized from the following sites: - semanticscholar.org - arxiv.org - aclweb.org - acm.org - biorxiv.org | |
| fields | No | A comma-separated list of the fields to be returned. The authorId field is always returned. See the resource 'semantic-scholar://fields/author' for available fields. Examples: - `name,affiliations,papers` - `url,papers.year,papers.authors` | authorId,name,affiliations,citationCount,hIndex |
| offset | No | Used for pagination. When returning a list of results, start with the element at this position in the list. | |
| limit | No | The maximum number of results to return. Maximum is 1000. |