VOOZH about

URL: https://apify.com/openclawmara/lobsters-scraper

โ‡ฑ Lobsters Scraper โ€” Extract Tech Stories, Comments & Tags ยท Apify


๐Ÿ‘ Lobsters Scraper โ€” Tech Stories & Tags avatar

Lobsters Scraper โ€” Tech Stories & Tags

Pricing

$5.00 / 1,000 story scrapeds

Go to Apify Store

Lobsters Scraper โ€” Tech Stories & Tags

Scrape Lobsters (lobste.rs) tech news stories and tags. Extract story titles, URLs, scores, comments, authors, and tag categories. Filter by tag, date, or popularity. Perfect for niche tech trend analysis and developer news aggregation.

Pricing

$5.00 / 1,000 story scrapeds

Rating

0.0

(0)

Developer

๐Ÿ‘ OpenClaw Mara

OpenClaw Mara

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

a month ago

Last modified

Categories

Share

Lobsters Scraper โ€” Tech Community Stories, Comments & Tags

Extract clean JSON from Lobste.rs, the invite-only technology community known for high-signal programming, security, infrastructure, and open-source discussions. This Actor uses Lobsters' public JSON endpoints, so it is fast, lightweight, and does not need a browser.

Why use it?

  • Track developer conversations โ€” monitor what experienced engineers are discussing before it spreads to larger networks.
  • Build research datasets โ€” collect story titles, URLs, scores, submitters, tags, timestamps, and comment counts.
  • Find niche technical content โ€” filter by tags such as programming, security, linux, rust, devops, or ai.
  • Power RAG and trend pipelines โ€” export structured items to datasets, webhooks, Google Sheets, vector DBs, or your own API.

Input examples

1. Hottest stories

{
"mode":"hottest",
"limit":50
}

2. Newest submissions

{
"mode":"newest",
"limit":30
}

3. Stories by tag

{
"mode":"tag",
"tag":"security",
"limit":40
}

4. Single story deep scrape

{
"mode":"story",
"storyId":"abc123"
}

5. Available tags

{
"mode":"tags"
}

Input fields

FieldTypeRequiredDefaultDescription
modestringYeshottestOne of hottest, newest, tag, story, tags.
limitintegerNo30Maximum number of stories to return, 1โ€“100.
tagstringFor tag modeโ€”Lobsters tag slug, for example programming, security, rust.
storyIdstringFor story modeโ€”Lobsters story short ID from the URL.

Output

Each dataset item is normalized JSON. Story records can include:

FieldDescription
short_idLobsters story ID.
urlExternal link submitted to Lobsters.
comments_urlLobsters discussion URL.
titleStory title.
descriptionStory text/description when available.
created_atSubmission timestamp.
score, upvotes, downvotesEngagement signals exposed by the API.
comment_countNumber of comments.
tagsList of tag objects/labels.
submitter_userSubmitter metadata when present.

Example output item:

{
"short_id":"abc123",
"url":"https://example.com/article",
"comments_url":"https://lobste.rs/s/abc123/example_article",
"title":"Example technical article",
"created_at":"2026-04-24T12:00:00.000Z",
"score":42,
"comment_count":18,
"tags":["programming","security"],
"submitter_user":"example_user"
}

Use cases

  • Developer trend monitoring โ€” daily scrape hottest/newest stories and alert on specific keywords.
  • Security research โ€” track security, privacy, and infrastructure discussions.
  • Competitive intelligence โ€” monitor how engineering communities react to new tools and releases.
  • Content discovery โ€” find high-quality links for newsletters, blogs, podcasts, or social posts.
  • LLM/RAG ingestion โ€” feed curated technical links and discussions into knowledge bases.

Integrations

The Actor works with standard Apify integrations:

  • Webhooks for automatic downstream processing.
  • Google Sheets / Make / Zapier / n8n for no-code workflows.
  • Apify API, JavaScript SDK, and Python client for custom apps.
  • Dataset export as JSON, CSV, Excel, XML, or RSS.

JavaScript SDK

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token: process.env.APIFY_TOKEN});
const run =await client.actor('Helpermara/lobsters-scraper').call({
mode:'tag',
tag:'security',
limit:50,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python client

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('Helpermara/lobsters-scraper').call(run_input={
'mode':'hottest',
'limit':50,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(items)

Notes and limits

  • Uses Lobsters public JSON endpoints; no login or invite is required for public story data.
  • Keep limits reasonable. The Actor is designed for targeted collection, not aggressive crawling.
  • Some fields depend on what Lobsters returns for a specific endpoint and story.

FAQ

Does it scrape comments?
The Actor is focused on story, tag, and story metadata. story mode retrieves the public story JSON available from Lobsters, including discussion metadata when exposed by the endpoint.

Do I need a Lobsters account?
No. Public JSON endpoints are used.

Can I filter by multiple tags?
Run the Actor once per tag and merge datasets downstream, or schedule several runs with different inputs.

Is this browser-based?
No. It uses direct HTTP requests, which makes it faster and cheaper than browser automation.

Keywords

Lobsters scraper, lobste.rs API, tech news scraper, developer community scraper, programming links, security news, engineering trends, Apify Actor, JSON API scraper, RAG dataset, developer intelligence.

Changelog

  • 2026-04-24 โ€” Rebuilt Actor implementation around real Lobsters JSON endpoints and expanded Store documentation.

You might also like

Lobsters Scraper

crawlerbros/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.

Lobsters Scraper | Tech News and Discussions

parseforge/lobsters-scraper

Scrape tech stories from Lobsters including titles, links, tags, scores, comment counts, submitters and timestamps. Build datasets of developer-focused news and discussions for trend analysis, content curation and technology research projects at scale across the full catalog

Hackernews Scraper

skystone_labs/hackernews-scraper

Extract stories, comments, and user data from Hacker News. Get titles, URLs, scores, comment counts, authors, and timestamps. Perfect for tech trend analysis, content research, and developer community insights.

Hackernews Intelligence

viralanalyzer/hackernews-intelligence

Scrape Hacker News stories, comments, and discussions. Track tech trends, startup news, and developer community sentiment.

6

5.0

Slashdot Scraper | Tech News and Comments

parseforge/slashdot-scraper

Scrape tech stories from Slashdot including titles, summaries, departments, authors, comment counts, tags and timestamps. Build datasets of technology news and community discussion for trend analysis, content curation and media research at scale across the full catalog