Lobsters Scraper
Pricing
from $3.00 / 1,000 results
Lobsters Scraper
Scrape Lobsters (lobste.rs) â€" a curated tech link aggregator. Fetch hottest, newest, or tag-filtered stories with scores, comments, tags, and author info. No authentication required.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Scrape tech stories from Lobsters (lobste.rs) — a curated computing-focused link aggregator trusted by developers worldwide. Extract hottest and newest stories, or browse by technology tag with full metadata including scores, comment counts, author info, and direct links.
Features
- Multiple feed modes: hottest stories, newest stories, or tag-filtered browsing
- 25+ technology tags: programming, python, javascript, security, linux, networking, databases, AI, devops, and more
- Full metadata: story title, URL, score, flag count, comment count, tags, submitter username, and timestamps
- Pagination support: automatically fetches multiple pages up to your maxItems limit
- No authentication required: uses the public lobste.rs JSON API
Use Cases
- Monitor trending tech articles and discussions
- Track community sentiment on specific technologies
- Build developer-focused news aggregators
- Research tech topics by community voting patterns
- Competitive analysis of developer interest areas
Input
| Field | Type | Description | Default |
|---|---|---|---|
mode | Select | Feed type: hottest, newest, or byTag | hottest |
tag | Select | Technology tag to browse (mode=byTag). Options: programming, python, javascript, security, linux, networking, databases, ai, devops, etc. | programming |
maxItems | Integer | Maximum number of stories to return (1–500) | 25 |
Output
Each record contains:
| Field | Type | Description |
|---|---|---|
shortId | String | Unique story ID on Lobsters |
title | String | Story headline |
url | String | Link to the original article |
score | Integer | Upvote count from community |
flags | Integer | Flag count (moderation signal) |
commentCount | Integer | Number of discussion comments |
description | String | Author-provided description (if any) |
tags | Array | Technology tags applied to the story |
submittedBy | String | Username of the submitter |
createdAt | String | ISO 8601 timestamp when posted |
shortIdUrl | String | Permanent story URL on lobste.rs |
commentsUrl | String | Direct link to comments thread |
userIsAuthor | Boolean | Whether submitter is the content author |
scrapedAt | String | ISO 8601 timestamp of when this record was scraped |
Example Output
{"shortId": "abc123","title": "Understanding Rust's Ownership Model","url": "https://example.com/rust-ownership","score": 89,"flags": 0,"commentCount": 14,"tags": ["programming", "rust"],"submittedBy": "johndoe","createdAt": "2026-06-04T10:00:00.000-05:00","shortIdUrl": "https://lobste.rs/s/abc123","commentsUrl": "https://lobste.rs/s/abc123/understanding_rust_ownership","userIsAuthor": false,"scrapedAt": "2026-06-04T15:30:00.000000+00:00"}
FAQs
Does this require an API key?
No. Lobsters provides a public JSON API at /hottest.json, /newest.json, and /t/<tag>.json without any authentication.
How many stories are returned per page?
Lobsters always returns exactly 25 stories per page. Set maxItems to a multiple of 25 for best results.
Which tags are available? The dropdown includes 25 curated tags. For the full list, visit https://lobste.rs/tags.
Can I get comments text?
This scraper returns story metadata only. Use the commentsUrl field to open the discussion thread.
How fresh is the data? Stories are fetched in real time directly from the Lobsters API. No caching.