/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}