/v1/hottest
Hottest (front-page) stories
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/lobsters-api/v1/hottest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lobsters-api/v1/hottest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lobsters-api/v1/hottest");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/lobsters-api/v1/hottest",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 25,
"total": 25,
"stories": [
{
"url": "https://www.apple.com/apple-events/event-stream/",
"tags": [
"event",
"ios",
"mac",
"swift",
"video"
],
"score": 56,
"title": "WWDC 2026",
"short_id": "awlukh",
"submitter": "calvin",
"created_at": "2026-06-08T11:52:38.000-05:00",
"description": "You'd think I'd forget dubdub? (Title isn't WWDC because the site thinks I'M SCREAMING IN ALL CAPS.)",
"comments_url": "https://lobste.rs/s/awlukh/wwdc_2026",
"lobsters_url": "https://lobste.rs/s/awlukh",
"comment_count": 13
},
{
"url": "https://invlpg.com/posts/2025-06-19-premature-optimization.html",
"tags": [
"c",
"performance"
],
"score": 78,
"title": "Premature Optimization is Fun Sometimes (2025)",
"short_id": "109l2t",
"submitter": "invlpg",
"created_at": "2026-06-08T02:41:58.000-05:00",
"description": null,
"comments_url": "https://lobste.rs/s/109l2t/premature_optimization_is_fun_sometimes",
"lobsters_url": "https://lobste.rs/s/109l2t",
"comment_count": 9
},
{
"url": null,
"tags": [
"meta",
"vibecoding"
],
"score": 112,
"title": "Can we stop tagging every thing as vibecoding?",
"short_id": "qgy6ak",
"submitter": "LAC-Tech",
"created_at": "2026-06-08T10:12:16.000-05:00",
"description": "Any article that even slightly mentions that AI exists is tagged as vibecoding, even when they have nothing to do with it. It:s getting out of hand.\r\n\r\nEXAMPLE 1:\r\n\r\nhttps://lobste.rs/s/ly0vif/my_students\r\n\r\nTagged as vibecoding, article contains a *single* passing reference\r\n\r\n> where people are racing to create intelligent machines, but only in order to make them slaves\r\n\r\nEXAMPLE 2 (my own article; biased)\r\n\r\nhttps://lobste.rs/s/vufbvv/user_doesn_t_care_you_should\r\n\r\nI quoted a *SINGLE* example of someone putting an agentic spin on an old trope:\r\n\r\n> \"Users don’t care whether the code was written by AI or by hand, or which framework you used. They care that the product works.\"\r\n\r\nEXAMPLE 3\r\n\r\nhttps://lobste.rs/s/gefcox/jolt_clojure_interpreter_on_janet\r\n\r\nThis is a code repo. There is no AGENTS.md, or CLAUDE.md, or any mention of AI in the readme...\r\n\r\nEXAMPLE 4:\r\n\r\nthis post, which someone will inevitably tag as \"vi
…