Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/lobsters-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/lobsters-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lobsters-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lobsters-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "lobste.rs public JSON (live)",
        "service": "lobsters-api",
        "endpoints": {
            "GET /v1/tag": "Stories filed under a tag (tag=, e.g. web, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/tags": "All tags with story counts.",
            "GET /v1/user": "User profile (username=, e.g. jcs).",
            "GET /v1/story": "Single story by short id (id=, e.g. ewaxh7).",
            "GET /v1/newest": "Newest stories (limit).",
            "GET /v1/hottest": "Hottest (front-page) stories (limit)."
        },
        "description": "Live feed of the Lobsters computing social-news community (lobste.rs): hottest and newest stories with score, comments, tags and submitter; single story by short id; stories by tag; user profiles (karma, join date, about); and the full tag list. Live, no key.",
        "hottest_now": 25
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:44.488Z",
        "request_id": "e43f568d-70ba-45cd-9f0d-4941157a861e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}