API · /lobsters-api

Lobsters API

healthy 4,655 Subscribers

A live feed of the Lobsters computing social-news community (lobste.rs) as an API. Pull the hottest (front-page) or newest stories with their score, comment count, tags and submitter; fetch a single story by its short id; list the stories filed under a tag; look a user's profile up (karma, join date, about); or list every tag. The Lobsters front page and community graph as clean JSON for social, news-aggregation, reading-list and dashboard apps. Live data, no key. Distinct from other social-news platforms.

api.oanor.com/lobsters-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/lobsters-api/openapi.json
/api/lobsters-api/llms.txt

Discovery: GET /api/index.json lists every API.

Lobsters API — live data on the oanor API marketplace

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
278 ms
Server probes · 24h
Subscribers
4,655
active
Total calls
160
last 7 days
status Full status page → · 32 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 500 calls / month
  • 5 requests / second
  • Hard cap (429 above quota, no overage)
  • 500 calls/month
  • 5 req/sec
  • Stories, tags, users
  • No credit card
Sign in to subscribe

Starter

€8.00 /month

  • 15,000 calls / month
  • 15 requests / second
  • Hard cap (429 above quota, no overage)
  • 15k calls/month
  • 15 req/sec
  • Email support
Sign in to subscribe

Pro

€19.00 /month

  • 70,000 calls / month
  • 30 requests / second
  • Hard cap (429 above quota, no overage)
  • 70k calls/month
  • 30 req/sec
  • Priority support
Sign in to subscribe

Business

€46.00 /month

  • 350,000 calls / month
  • 50 requests / second
  • Hard cap (429 above quota, no overage)
  • 350k calls/month
  • 50 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Discourse API — oanor API marketplace

Discourse API

A live window into Discourse's own official community forum (meta.discourse.org), the flagship instance of the most widely used modern forum platform, as an API. Pull the latest topics with their reply, view and like counts; the top topics of a day, week, month or year; the category list with topic counts; or a user's profile (trust level, join date). The traditional threaded-forum experience delivered as clean JSON for social, news-aggregation and community-dashboard apps. Live data, no key. Distinct from link-aggregators and microblogs — this is forum software.

api.oanor.com/discourse-api

Mbin API — oanor API marketplace

Mbin API

A live window into the Mbin / kbin threadiverse — a federated, Reddit-style link-aggregator and microblog on the Fediverse — as an API. Pull the hottest link and thread entries with their magazine, score and comment count; browse the microblog post feed; search or browse magazines (communities) with their subscriber counts; or fetch a single magazine. The federated link-aggregator front page delivered as clean JSON for social, news-aggregation and community-dashboard apps. Live data, no key. Distinct from Lemmy and Mastodon — Mbin is its own software and API.

api.oanor.com/mbin-api

Chihuahua Chain API — oanor API marketplace

Chihuahua Chain API

Real-time on-chain data for Chihuahua (chain-id chihuahua-1), a community-driven Cosmos-SDK Layer-1 secured by delegated proof-of-stake with HUAHUA as its native coin. The status endpoint returns the chain id, latest block height and time, proposer and node application version so you can confirm the chain is live and producing blocks. The validators endpoint returns the full bonded validator set — each moniker, operator address, stake in HUAHUA, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded HUAHUA. The supply endpoint returns the total HUAHUA supply (in HUAHUA and base uhuahua), the bonded amount and the bonded ratio. The governance endpoint returns the most recent on-chain governance proposals with title, status and voting window. The meta endpoint documents the chain, denom and decimals. Reads a live Chihuahua Cosmos-SDK LCD node directly (with mirror fallback), so values are current to the latest block. Live, nothing stored. 5 endpoints. This serves chain-level staking, supply and governance data; for token prices or NFTs use a dedicated market/indexer API.

api.oanor.com/chihuahua-api

OpenProcessing Creative Coding API — oanor API marketplace

OpenProcessing Creative Coding API

Live creator and sketch data from OpenProcessing, the community for Processing and p5.js creative-coding sketches, served from its public API. The user endpoint returns a creator's profile — username, name, bio, location, website, join date and total sketch count. The sketches endpoint lists a creator's published sketches with title, license, engine mode and dates. The sketch endpoint returns a single sketch's detail — title, description, tags, license, libraries used, the fork parent it was remixed from, and the author. The social endpoint returns a creator's followers or the accounts they follow. This is a creative-coding community stats API — creator profiles, sketch catalogues and the follow graph — distinct from the code-hosting, package-registry and other social-platform APIs in the catalogue. A user is a numeric OpenProcessing userID and a sketch is a numeric visualID, both visible in OpenProcessing URLs. Live, no key on the upstream, nothing stored.

api.oanor.com/openprocessing-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Lobsters API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Lobsters API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Lobsters API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Lobsters API cost?
Lobsters API has a free tier with 100 calls / month. Paid plans start at €8.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Lobsters API GDPR-compliant?
All requests to Lobsters API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/lobsters-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/lobsters-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/lobsters-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/lobsters-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.