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/mbin-api

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/mbin-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mbin-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mbin-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/mbin-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": "public Mbin instance (kbin.earth), live federated data",
        "service": "mbin-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/posts": "Microblog posts (sort, page, limit).",
            "GET /v1/entries": "Link/thread entries (sort=hot|active|newest|top|commented, page, limit).",
            "GET /v1/magazine": "Single magazine by numeric id (id=).",
            "GET /v1/magazines": "Magazines: search (query=) or browse (sort, page, limit)."
        },
        "description": "Live feed of the Mbin/kbin threadiverse (federated Reddit-style link-aggregator + microblog on the Fediverse) via a public instance: hottest link/thread entries with magazine, score and comments; the microblog post feed; magazine (community) search and browse with subscriber counts; single magazine lookup. Live, no key. Distinct from Lemmy and Mastodon.",
        "entry_sorts": [
            "active",
            "hot",
            "newest",
            "oldest",
            "top",
            "commented"
        ],
        "magazine_sorts": [
            "active",
            "hot",
            "newest"
        ],
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:40.817Z",
        "request_id": "645d212f-62c5-4dcd-8b3c-80323595faae"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}