Skip to main content
GET
https://discover.veritus.ai/api
/
v1
/
papers
/
{corpusId}
Retrieve Paper by Corpusid
curl --request GET \
  --url https://discover.veritus.ai/api/v1/papers/{corpusId} \
  --header 'Authorization: Bearer <token>'
{
  "abstract": "<string>",
  "authors": "<string>",
  "doi": "<string>",
  "downloadable": true,
  "engine": "<string>",
  "fieldsOfStudy": [
    "<string>"
  ],
  "id": "<string>",
  "impactFactor": {
    "citationCount": 123,
    "influentialCitationCount": 123,
    "referenceCount": 123
  },
  "isOpenAccess": true,
  "isPrePrint": true,
  "journalName": "<string>",
  "link": "<string>",
  "pdfLink": "<string>",
  "publicationType": "<string>",
  "publishedAt": "<string>",
  "score": 123,
  "semanticLink": "<string>",
  "title": "<string>",
  "titleLink": "<string>",
  "tldr": "<string>",
  "v_country": "<string>",
  "v_journal_name": "<string>",
  "v_publisher": "<string>",
  "v_quartile_ranking": "<string>",
  "year": 123
}
Get detailed information about a specific paper using its corpus ID.

Parameters

corpusId
string
required
The corpus ID of the paper

Response

Returns a single paper object with complete details.
abstract
string
Paper abstract text (string or null)
authors
string
Comma-separated list of author names
doi
string
Digital Object Identifier (string or null)
downloadable
boolean
Whether the paper PDF is downloadable
engine
string
Search engine used (optional)
fieldsOfStudy
string[]
Array of field of study categories
id
string
Unique paper identifier
impactFactor
object
Object containing citation metrics
isOpenAccess
boolean
Whether the paper is open access (optional)
isPrePrint
boolean
Whether the paper is a preprint (optional)
journalName
string
Name of the journal (string or null)
URL to the paper (optional)
URL to the PDF (optional)
publicationType
string
Type of publication (string or null)
publishedAt
string
Publication date (string or null)
score
number
Relevance score (number or null)
Link to Semantic Scholar page (optional)
title
string
Paper title
Link to paper title page (optional)
tldr
string
TLDR summary of the paper (string or null)
v_country
string
Country of publication venue (string or null)
v_journal_name
string
Journal name from venue data (string or null)
v_publisher
string
Publisher name (string or null)
v_quartile_ranking
string
Quartile ranking (Q1, Q2, Q3, Q4, or null)
year
number
Publication year (number or null)

Example

Use a corpus ID from a previous search result to retrieve full paper details.