Semanticscholar
Semantic Scholar is an AI-powered academic search engine that helps researchers discover and understand scientific literature
Details about a paper s authors
Details about a paper s authors
Details about a paper
Details about a paper
Examples: <ul> <li><code>https://api.semanticscholar.org/graph/v1/paper/649def34f8be52c8b66281af98ae884c09aef38b</code></li> <ul> <li>returns a paper with its paperid and title. </li> </ul> <li><code>https://api.semanticscholar.org/graph/v1/paper/649def34f8be52c8b66281af98ae884c09aef38b?fields=url,year,authors</code></li> <ul> <li>returns the paper’s paperid, url, year, and list of authors. </li> <li>each author has authorid and name.</li> </ul> <li><code>https://api.semanticscholar.org/graph/v1/paper/649def34f8be52c8b66281af98ae884c09aef38b?fields=citations.authors</code></li> <ul> <li>returns the paper’s paperid and list of citations. </li> <li>each citation has its paperid plus its list of authors.</li> <li>each author has their 2 always included fields of authorid and name.</li> </ul>
limitations: <ul> <li>can only return up to 10 mb of data at a time.</li> </ul> </ul>
Text snippet search
Text snippet search
Return the text snippets that most closely match the query. text snippets are excerpts of approximately 500 words, drawn from a paper’s title, abstract, and body text, but excluding figure captions and the bibliography. it will return the highest ranked snippet first, as well as some basic data about the paper it was found in. examples: <ul> <li><code>https://api.semanticscholar.org/graph/v1/snippet/search?query=the literature graph is a property graph with directed edges&limit=1</code></li> <ul> <li>returns a single snippet that is the highest ranked match.</li> <li>each snippet has text, snippetkind, section, annotation data, and score. as well as the following data about the paper it comes from: corpusid, title, authors, and openaccessinfo.</li> </ul> </ul>
limitations: <ul> <li>you must include a query.</li> <li>if you don’t set a limit, it will automatically return 10 results.</li> <li>the max limit allowed is 1000.</li> </ul> </ul>
Details about a paper s citations
Details about a paper s citations
Retrieves a list of citations for a specific academic paper using its unique semantic scholar paper id. this endpoint is useful for researchers and developers who want to explore the impact and connections of a particular academic work within the broader scientific literature. it provides information about other papers that have cited the specified paper, allowing users to trace the influence of research and discover related works. the endpoint should be used when analyzing the reception and impact of a specific paper, building citation networks, or conducting bibliometric studies. it does not provide the full text of citing papers or detailed information about the citations beyond basic metadata.
Details about a paper s references
Details about a paper s references
Retrieves the list of references cited by a specific paper in the semantic scholar database. this endpoint allows users to explore the scholarly context of a publication by accessing its bibliography. it’s particularly useful for understanding the foundation of a paper’s research, tracing the development of ideas, or conducting literature reviews. the tool returns details about the cited papers, which may include their titles, authors, publication dates, and semantic scholar ids. it should be used when analyzing a paper’s sources or investigating the connections between different academic works. note that this endpoint only provides outgoing references (papers cited by the specified paper) and not incoming citations (papers that cite the specified paper).
Get details for multiple authors at once
Get details for multiple authors at once
Details about an author
Details about an author
Details about an author s papers
Details about an author s papers
Get details for multiple papers at once
Get details for multiple papers at once
The semanticscholar paper batch endpoint allows users to retrieve data for multiple academic papers in a single api call. this endpoint is particularly useful when you need to fetch information for a batch of papers efficiently, reducing the number of individual api requests. it accepts an array of paper ids and returns the corresponding data for each paper. use this endpoint when you have a list of known paper ids and want to retrieve their details simultaneously. keep in mind that while there’s no specified limit on the number of ids you can send, very large batches may be subject to api rate limiting or response size restrictions.
Paper bulk search
Paper bulk search
Behaves similarly to <code>/paper/search</code>, but is intended for bulk retrieval of basic paper data without search relevance: <ul> <li>text query is optional and supports boolean logic for document matching.</li> <li>papers can be filtered using various criteria.</li> <li>up to 1,000 papers will be returned in each call.</li> <li>if there are more matching papers, a continuation “token” will be present.</li> <li>the query can be repeated with the token param added to efficiently continue fetching matching papers.</li> </ul>
returns a structure with an estimated total matches, batch of matching papers, and a continuation token if more results are available.
limitations: <ul> <li>nested paper data, such as citations, references, etc, is not available via this method.</li> <li>up to 10,000,000 papers can be fetched via this method. for larger needs, please use the <a href=“datasets/“>datasets api</a> to retrieve full copies of the corpus.</li> </ul>
Search for authors by name
Search for authors by name
Suggest paper query completions
Suggest paper query completions
To support interactive query-completion, return minimal information about papers matching a partial query example: <code>https://api.semanticscholar.org/graph/v1/paper/autocomplete?query=semanti</code>
Paper title search
Paper title search
Behaves similarly to <code>/paper/search</code>, but is intended for retrieval of a single paper based on closest title match to given query. examples: <ul> <li><code>https://api.semanticscholar.org/graph/v1/paper/search/match?query=construction of the literature graph in semantic scholar</code></li> <ul> <li>returns a single paper that is the closest title match.</li> <li>each paper has its paperid, title, and matchscore as well as any other requested fields.</li> </ul> <li><code>https://api.semanticscholar.org/graph/v1/paper/search/match?query=totalgarbagenonsense</code></li> <ul> <li>returns with a 404 error and a “title match not found” message.</li> </ul> </ul>
limitations: <ul> <li>will only return the single highest match result.</li> </ul> </ul>
Paper relevance search
Paper relevance search
The searchpapers endpoint allows users to search for academic papers within the semantic scholar database. it provides a powerful way to discover relevant scientific literature based on user-defined search criteria. this endpoint should be used when researchers, students, or developers need to find papers related to specific topics, authors, or time periods. the search functionality supports various query parameters to refine and customize the search results, making it suitable for both broad exploratory searches and targeted inquiries. however, users should be aware that the search is limited to papers indexed by semantic scholar, and very recent publications might not be immediately available. the endpoint returns a list of papers matching the search criteria, along with selected metadata fields, facilitating efficient literature review and analysis.