/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}