/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}