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
Hacker News Has a Free Search API — Here's How to Use It
How-ToSecurity

Hacker News Has a Free Search API — Here's How to Use It

via Dev.to TutorialАлексей Спинов4h ago

Hacker News has a powerful search API powered by Algolia. No authentication, no rate limits, instant results. Search Stories curl 'https://hn.algolia.com/api/v1/search?query=web+scraping&tags=story&hitsPerPage=5' Returns: title, points, comments, author, URL, date. Search by Date # Stories from the last 24 hours curl 'https://hn.algolia.com/api/v1/search_by_date?query=AI&tags=story&numericFilters=created_at_i>1711000000' Node.js Example async function searchHN ( query , limit = 25 ) { const url = `https://hn.algolia.com/api/v1/search?query= ${ encodeURIComponent ( query )} &tags=story&hitsPerPage= ${ limit } ` ; const res = await fetch ( url ); const data = await res . json (); return data . hits . map ( hit => ({ title : hit . title , url : hit . url , points : hit . points , comments : hit . num_comments , author : hit . author , date : hit . created_at , hn_url : `https://news.ycombinator.com/item?id= ${ hit . objectID } ` })); } const stories = await searchHN ( ' startup funding '

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
2 views

Related Articles

I Studied What the Top 0.1%
How-To

I Studied What the Top 0.1%

Medium Programming • 5h ago

Show HN: Red Grid Link – peer-to-peer team tracking over Bluetooth, no servers
How-To

Show HN: Red Grid Link – peer-to-peer team tracking over Bluetooth, no servers

Hacker News • 5h ago

Claude Code used 2.5M tokens on my project. I got it down to 425K with 6 hook scripts.
How-To

Claude Code used 2.5M tokens on my project. I got it down to 425K with 6 hook scripts.

Dev.to • 7h ago

Hello, world!
How-To

Hello, world!

Dev.to • 7h ago

A new Nintendo Switch 2 could be the poster child for replaceable batteries
How-To

A new Nintendo Switch 2 could be the poster child for replaceable batteries

The Verge • 8h ago

Discover More Articles