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
I Built a Research Paper Finder That Searches 5 APIs at Once (Python, 100 Lines)
NewsWeb Development

I Built a Research Paper Finder That Searches 5 APIs at Once (Python, 100 Lines)

via Dev.to TutorialAlex Spinov3h ago

The Problem Every time I research a topic, I open 5 tabs: Google Scholar, arXiv, Semantic Scholar, OpenAlex, Crossref. Search the same query. Compare results. Copy DOIs back and forth. So I built a single Python script that searches all 5 APIs simultaneously and gives me a unified result. 100 lines. No frameworks. Just requests and concurrent.futures . The Code #!/usr/bin/env python3 """ Search 5 academic APIs at once — unified paper finder """ import requests from concurrent.futures import ThreadPoolExecutor , as_completed def search_openalex ( query , limit = 3 ): resp = requests . get ( " https://api.openalex.org/works " , params = { " search " : query , " sort " : " cited_by_count:desc " , " per_page " : limit }, timeout = 10 ) results = [] for w in resp . json (). get ( " results " , []): results . append ({ " title " : w [ " title " ], " year " : w . get ( " publication_year " ), " citations " : w . get ( " cited_by_count " , 0 ), " doi " : w . get ( " doi " , "" ). replace ( " h

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
2 views

Related Articles

La historia de Ramiro..
News

La historia de Ramiro..

Dev.to • 4h ago

The Sonos Ace are a hefty 25 percent for Amazon’s Big Spring Sale
News

The Sonos Ace are a hefty 25 percent for Amazon’s Big Spring Sale

The Verge • 4h ago

Hooks in Claude Code
News

Hooks in Claude Code

Medium Programming • 4h ago

I Got Rejected for “Culture Fit” (What That Really Means)
News

I Got Rejected for “Culture Fit” (What That Really Means)

Medium Programming • 4h ago

The Apple Watch Series 9 is over 50% off during the Amazon Spring Sale for a limited time
News

The Apple Watch Series 9 is over 50% off during the Amazon Spring Sale for a limited time

ZDNet • 5h ago

Discover More Articles