Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tezostokens-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "top_token": "4/23 McLaren F1 Collectible"
        },
        "source": "public TzKT indexer (api.tzkt.io), keyless",
        "service": "tezostokens-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tokens": "Browse/rank FA tokens & NFTs by holders (standard=fa1.2|fa2, limit).",
            "GET /v1/holders": "A token's holders and decoded balances (token_id; omit for the most-held).",
            "GET /v1/transfers": "A token's recent transfers (token_id; omit for the most-held)."
        },
        "description": "Browse the Tezos token universe live from the public TzKT indexer: discover and rank FA1.2/FA2 tokens and NFT collections (contract, standard, name, symbol, holders, supply, NFT artwork), list the holders of any token with decoded balances, and trace a token's transfers. The discovery, NFT and distribution layer for Tezos wallets, token explorers and NFT marketplaces. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:01.229Z",
        "request_id": "1115a8b5-1066-4705-899d-58fe604c48fc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}