Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/microblog-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}