Look up a paper by DOI
doi_norm is the lowercase bare DOI and an indexed key.
SELECT id, title, publication_year, cited_by_count FROM openalex.works WHERE doi_norm = '10.1038/nature14539' LIMIT 5;
Source
The OpenAlex scholarly graph — 508 million works, 119 million author profiles, and 3 billion citation edges — queryable with read-only SQL by DOI, title, author, venue, year, and citation count.
openalex.worksopenalex.authorsopenalex.cited_byembeddings.openalex_worksOpenAlex public data snapshot (works, authors); citation edges derived from referenced_works.
iddoititledisplay_nameidsindexed_inpublication_datepublication_yearlanguagetypeauthorshipsauthors_countcorresponding_author_idscorresponding_institution_idsprimary_topictopicskeywordsconceptslocationslocations_countprimary_locationbest_oa_locationsustainable_development_goalsawardsfundersinstitutionscountries_distinct_countinstitutions_distinct_countopen_accessis_paratextis_retractedis_xpacbiblioreferenced_worksreferenced_works_countrelated_worksabstract_inverted_indexcited_by_countcounts_by_yearapc_listapc_paidfwcicitation_normalized_percentilecited_by_percentile_yearmeshhas_contenthas_fulltextcreated_dateupdated_datedoi_normsearch_text_lcpmid_normRead live from the schema registry for openalex.works — 52 columns. Every relation's full contract is served by /v1/scry/schema.
doi_norm is the lowercase bare DOI and an indexed key.
SELECT id, title, publication_year, cited_by_count FROM openalex.works WHERE doi_norm = '10.1038/nature14539' LIMIT 5;
The reverse citation edge table is keyed by the cited work; count citers with uniq.
SELECT publication_date, citing_work_id FROM openalex.cited_by WHERE cited_work_id = 'https://openalex.org/W2919115771' ORDER BY publication_date DESC LIMIT 20;