Skip to content
GET /v1/topics

List the curated Discover topics

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

Example response

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

{
    "data": {
        "count": 8,
        "topics": [
            {
                "url": "https://micro.blog/discover/books",
                "slug": "books",
                "description": "Books, reading and literature"
            },
            {
                "url": "https://micro.blog/discover/photos",
                "slug": "photos",
                "description": "Photography and photo posts"
            },
            {
                "url": "https://micro.blog/discover/music",
                "slug": "music",
                "description": "Music, albums and listening"
            },
            {
                "url": "https://micro.blog/discover/art",
                "slug": "art",
                "description": "Art, illustration and design"
            },
            {
                "url": "https://micro.blog/discover/movies",
                "slug": "movies",
                "description": "Film and television"
            },
            {
                "url": "https://micro.blog/discover/podcasts",
                "slug": "podcasts",
                "description": "Podcasts and audio"
            },
            {
                "url": "https://micro.blog/discover/travel",
                "slug": "travel",
                "description": "Travel and places"
            },
            {
                "url": "https://micro.blog/discover/writing",
                "slug": "writing",
                "description": "Writing, blogging and the craft"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:44.479Z",
        "request_id": "95ba5005-3730-4440-a5bf-adafe4f18e7b"
    },
    "status": "ok",
    "message": "Topics retrieved successfully",
    "success": true
}