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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "sample": {
            "first_token": "F"
        },
        "source": "public Hedera Mirror Node (mainnet-public.mirrornode.hedera.com), keyless",
        "service": "hederatokens-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/nfts": "The serials inside an NFT collection: owner + metadata (token_id; omit for the first NFT collection).",
            "GET /v1/tokens": "Browse/search HTS tokens (type=fungible|nft, name, limit).",
            "GET /v1/holders": "A token's holders and decimal-adjusted balances (token_id; omit for the first token)."
        },
        "description": "Browse the Hedera Token Service (HTS) live from the public Hedera Mirror Node: discover and filter HTS tokens (fungible vs NFT, by name), list the minted serials inside any NFT collection with owner and metadata, and list the holders of any token with decimal-adjusted balances. The discovery and NFT layer for Hedera wallets, token explorers and NFT marketplaces. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:02.300Z",
        "request_id": "0edc9eb6-8182-4a40-bee2-af4fd3311a48"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}