FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Crossref Has a Free API — Look Up Any DOI and Get Full Metadata (No Key)
NewsDevOps

Crossref Has a Free API — Look Up Any DOI and Get Full Metadata (No Key)

via Dev.to TutorialAlex Spinov2h ago

Every research paper has a DOI. But did you know you can resolve ANY DOI to get full metadata through a free API? Crossref manages 150M+ DOIs and provides a completely free, no-key API to query them all. What Is Crossref? Crossref is the DOI registration agency for scholarly content. Their API lets you: Resolve any DOI to full metadata Search across 150M+ works Get citation counts and funding info No API key needed Quick Start import requests doi = " 10.1038/s41586-021-03819-2 " response = requests . get ( f " https://api.crossref.org/works/ { doi } " ) work = response . json ()[ " message " ] print ( f " Title: { work [ ' title ' ][ 0 ] } " ) print ( f " Journal: { work [ ' container-title ' ][ 0 ] } " ) print ( f " Citations: { work [ ' is-referenced-by-count ' ] } " ) print ( f " Authors: { len ( work [ ' author ' ]) } authors " ) Search Papers by Topic response = requests . get ( " https://api.crossref.org/works " , params = { " query " : " CRISPR gene editing " , " rows " : 5 , "

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

UTC to PST/PDT Conversion Is Not Always Minus 8 Hours
News

UTC to PST/PDT Conversion Is Not Always Minus 8 Hours

Dev.to • 1h ago

Photo Filters Are Just Matrix Operations on Pixel Arrays
News

Photo Filters Are Just Matrix Operations on Pixel Arrays

Dev.to Tutorial • 1h ago

Percentage Change Is Not Symmetric and That Breaks Dashboards
News

Percentage Change Is Not Symmetric and That Breaks Dashboards

Dev.to Beginners • 1h ago

Three Percentage Formulas That Cover Every Situation
News

Three Percentage Formulas That Cover Every Situation

Dev.to Beginners • 1h ago

2 Years on DEV!
News

2 Years on DEV!

Dev.to • 2h ago

Discover More Articles