/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}