Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/microblog-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "source": "Micro.blog public Discover JSON Feed (live)",
        "topics": [
            "books",
            "photos",
            "music",
            "art",
            "movies",
            "podcasts",
            "travel",
            "writing"
        ],
        "service": "microblog-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/topic": "Posts for a curated topic (topic=books|photos|music|art|movies|podcasts|travel|writing, limit).",
            "GET /v1/topics": "List the curated Discover topics.",
            "GET /v1/discover": "Main curated Discover stream (limit up to 100)."
        },
        "description": "Live Micro.blog Discover timeline as an API: the human-curated stream of the best recent posts on Micro.blog, plus curated topics (books, photos, music, art, movies, podcasts, travel, writing). Each post carries author (name, username, profile, avatar), text and HTML, permalink, publish time and post-type flags. Pull the main Discover stream, a topic, or the topic list. Live, no key. Distinct from Mastodon / Misskey / Mbin and from book/reading APIs — this is Micro.blog's curated discovery layer.",
        "discover_items_now": 50
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:48.108Z",
        "request_id": "79081c75-7055-4242-8e09-c9b282de563f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}