Live data from Hacker News

Ask HN: Anyone can help me create a RSS feed for indiehackers.com?

news.ycombinator.com

1–4 of 4 posts

Re: Ask HN: Anyone can help me create a RSS feed for indiehackers.com?

#2
If you are looking for interviews, you can use Inspect Elements Network tab to see the requests that your browser makes.

There is a POST request to Algolia (search provider, same as HN) that you could take and re-create in your own system to generate the RSS feed.

The POST data you are looking for is something like:

``` {"requests":[{"indexName":"interviews_publishedAt_desc","params":"query=&page=0&hitsPerPage=20"}]} ```

--

With all of that said - your best bet is to ask @csallen on Twitter or post on IH itself.

Re: Ask HN: Anyone can help me create a RSS feed for indiehackers.com?

#3
post #2

If you are looking for interviews, you can use Inspect Elements Network tab to see the requests that your browser makes. There is a POST request to Algolia (search provider, same as HN) that you could take and re-create in your own system to generate the RSS feed. The POST data you are looking for is something like: ``` {"requests":[{"indexName":"interviews_publishedAt_desc","params":"query=&page=0&hitsPerPage=20"}]}…

That's a good first start. Thank you!