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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "source": "meta.discourse.org public JSON (live)",
        "periods": [
            "daily",
            "weekly",
            "monthly",
            "quarterly",
            "yearly",
            "all"
        ],
        "service": "discourse-api",
        "instance": "meta.discourse.org",
        "endpoints": {
            "GET /v1/top": "Top topics by period (period=daily|weekly|monthly|quarterly|yearly|all, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/user": "User profile (username=, e.g. codinghorror).",
            "GET /v1/latest": "Latest topics (limit).",
            "GET /v1/categories": "All categories with topic counts."
        },
        "categories": 11,
        "description": "Live feed of Discourse's official community forum (meta.discourse.org), flagship of the most-used modern forum platform: latest topics with reply/view/like counts, top topics by period, the category list, and user profiles (trust level, join date). Live, no key. Distinct from link-aggregators and microblogs — this is forum software."
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:24.034Z",
        "request_id": "7c9b8d67-af96-45e5-a2b4-7cda1575fd94"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}