Skip to main content
POST
/
api
/
semanticscholar
/
papers
/semanticscholar/papers
curl --request POST \
  --url https://api.anysite.io/api/semanticscholar/papers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "paper": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@semanticscholar_paper",
    "title": "",
    "abstract": "<string>",
    "year": 123,
    "published_at": "<string>",
    "venue": "<string>",
    "citation_count": 0,
    "reference_count": 0,
    "influential_citation_count": 0,
    "fields_of_study": [],
    "s2_fields_of_study": [],
    "publication_types": [],
    "doi": "<string>",
    "arxiv_id": "<string>",
    "corpus_id": "<string>",
    "mag_id": "<string>",
    "dblp_id": "<string>",
    "acl_id": "<string>",
    "pubmed_id": "<string>",
    "pubmed_central_id": "<string>",
    "authors": [],
    "journal": {
      "@type": "@semanticscholar_journal",
      "name": "<string>",
      "volume": "<string>",
      "pages": "<string>"
    },
    "publication_venue": {
      "@type": "@semanticscholar_publication_venue",
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "alternate_names": [],
      "url": "<string>"
    },
    "tldr": "<string>",
    "bibtex": "<string>",
    "is_open_access": false,
    "open_access_pdf_url": "<string>",
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
paper
string
required

Paper identifier: Semantic Scholar paper id, DOI:, ARXIV:, CorpusId:, etc.

Minimum string length: 1
Examples:

"649def34f8be52c8b66281af98ae884c09aef38b"

"DOI:10.18653/v1/N18-3011"

"ARXIV:1706.03762"

"CorpusId:215416146"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@semanticscholar_paper
title
string
default:""
abstract
string | null
year
integer | null
published_at
string | null
venue
string | null
citation_count
integer
default:0
reference_count
integer
default:0
influential_citation_count
integer
default:0
fields_of_study
string[]
s2_fields_of_study
string[]
publication_types
string[]
doi
string | null
arxiv_id
string | null
corpus_id
string | null
mag_id
string | null
dblp_id
string | null
acl_id
string | null
pubmed_id
string | null
pubmed_central_id
string | null
authors
SemanticscholarPaperAuthor · object[]
journal
SemanticscholarJournal · object
publication_venue
SemanticscholarPublicationVenue · object
tldr
string | null
bibtex
string | null
is_open_access
boolean
default:false
open_access_pdf_url
string | null
web_url
string
default:""