/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/arena-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arena-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arena-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/arena-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": "Are.na public API (live)",
"service": "arena-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/blocks": "A channel's contents/blocks (slug=, limit, page).",
"GET /v1/search": "Search channels (q=design, limit, page).",
"GET /v1/channel": "Channel details by slug (slug=arena-influences)."
},
"description": "Live data from Are.na, the calm social platform for collecting and connecting ideas into visual channels: search channels (with block count, followers and status), open a channel's details, or pull its contents (image/link/text blocks). Live, no key. Distinct from microblogs, link-aggregators and forums.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:03:20.425Z",
"request_id": "fb40ca5c-a7f5-437a-b00c-798b4e6fdcbe"
},
"status": "ok",
"message": "Meta",
"success": true
}