Search Papers
curl --request GET \
--url https://discover.veritus.ai/api/v1/papers/search \
--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
}
]
}Others
Search Papers
Search for papers by title
GET
/
v1
/
papers
/
search
Search Papers
curl --request GET \
--url https://discover.veritus.ai/api/v1/papers/search \
--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
}
]
}Search for papers by title and get a list of matching results.
Parameters
The title of the paper to search for
Response
Returns an array of matching papers.Array of paper objects
Show child attributes
Show child attributes
Paper abstract text (string or null)
Comma-separated list of author names
Digital Object Identifier (string or null)
Whether the paper PDF is downloadable
Search engine used (optional)
Array of field of study categories
Unique paper identifier
Whether the paper is open access (optional)
Whether the paper is a preprint (optional)
Name of the journal (string or null)
URL to the paper (optional)
URL to the PDF (optional)
Type of publication (string or null)
Publication date (string or null)
Relevance score (number or null)
Link to Semantic Scholar page (optional)
Paper title
Link to paper title page (optional)
TLDR summary of the paper (string or null)
Country of publication venue (string or null)
Journal name from venue data (string or null)
Publisher name (string or null)
Quartile ranking (Q1, Q2, Q3, Q4, or null)
Publication year (number or null)
Example
Try searching for papers about “Machine Learning” or “Neural Networks” to see results.⌘I