/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}