Look up a paper by arXiv id
arxiv_id, pmid, pmcid, and paper_key are indexed lookups.
SELECT paper_key, title, published_year, cited_by_count, sources, has_fulltext FROM academic.catalog WHERE arxiv_id = '1706.03762' LIMIT 5;
Source
One merged bibliographic row per paper across arXiv, PubMed, PMC, Europe PMC (with bioRxiv and medRxiv), INSPIRE-HEP, and HuggingFace papers, enriched from OpenAlex — with full text on hand where a source supplied it.
academic.catalogacademic.papersembeddings.academic_paper_chunksPublic bibliographic feeds (arXiv, PubMed, Europe PMC, INSPIRE-HEP) folded into one catalog; full-text extractions where the source is open.
paper_keydoiarxiv_idpmidpmcidepmc_idinspire_idtitleauthorsabstractvenuepublished_yearpublished_atlanguagespub_typescategoriesmesh_termskeywordscited_by_countis_oaoa_statusoa_urllicenseis_retractedsourceshas_fulltextfulltext_tokensbuilt_atRead live from the schema registry for academic.catalog — 28 columns. Every relation's full contract is served by /v1/scry/schema.
arxiv_id, pmid, pmcid, and paper_key are indexed lookups.
SELECT paper_key, title, published_year, cited_by_count, sources, has_fulltext FROM academic.catalog WHERE arxiv_id = '1706.03762' LIMIT 5;
Filter by category and year, then rank by citedness.
SELECT paper_key, title, venue, cited_by_count, has_fulltext FROM academic.catalog WHERE has(categories, 'cs.LG') AND published_year = 2024 ORDER BY cited_by_count DESC LIMIT 20;