Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/flowcadence-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}