/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/flowcadence-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flowcadence-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flowcadence-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/flowcadence-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": {
"sample": {
"sealed_height": 154808249
},
"source": "official public Flow access REST API (rest-mainnet.onflow.org), keyless",
"service": "flowcadence-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "A Cadence block by height: id, parent, timestamp, collections (height; omit for latest sealed).",
"GET /v1/account": "A Cadence account: FLOW balance, key count, deployed contracts (address; omit for service account).",
"GET /v1/network": "Live network status: chain id, node version, spork, protocol state version."
},
"description": "Read the Flow blockchain's native Cadence layer live from the official public access REST API: read a Cadence block by height (or the latest sealed block) with its id, parent, timestamp and collection count; look up any Cadence account for its FLOW balance, key count and deployed contracts; and read the live network status (chain id, node version, spork, protocol state version). The Cadence-on-chain layer for Flow wallets, explorers and dapp builders. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:32.972Z",
"request_id": "8d363601-5e8b-46a0-b685-55da8f3fd963"
},
"status": "ok",
"message": "Meta",
"success": true
}