Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/microblog-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

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