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

Service metadata & endpoint catalog

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

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

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

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

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

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

curl "https://api.oanor.com/regen-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/regen-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/regen-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/regen-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "sample": {
            "credit_classes": 13
        },
        "source": "Regen public Cosmos REST / LCD nodes (regen-api.polkachu.com and mirrors), keyless",
        "service": "regen-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total REGEN supply.",
            "GET /v1/staking": "Regen chain staking economics & parameters.",
            "GET /v1/credit-batches": "Issued credit batches with vintage dates (limit).",
            "GET /v1/credit-classes": "Carbon-credit classes (limit) + chain-wide count.",
            "GET /v1/credit-projects": "Registered ecological projects (limit)."
        },
        "description": "Live on-chain data for Regen Network (the ecological-asset & carbon-credit Cosmos L1, chain regen-1) with no key: the on-chain ecocredit registry (credit classes, registered ecological projects, and issued credit batches with vintage dates), the Regen chain staking economics, the total REGEN supply, and the latest block. The Regen-on-chain / carbon-credits / staking layer for ESG dashboards, carbon registries and research. Distinct from other chain readers — Regen and its on-chain carbon-credit registry. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:22.977Z",
        "request_id": "67d5b2b6-eb9c-4c55-aabc-0f40131f4e8e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}