Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/tezoscontracts-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "sample": {
            "top_contract": "KT1CeFqjJRJPNVvhvznQrWfHad2jCiDZ6Lyj"
        },
        "source": "public TzKT indexer (api.tzkt.io), keyless",
        "service": "tezoscontracts-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/contract": "One contract in full: balance, creator, code hash, activity (address; omit for the top).",
            "GET /v1/contracts": "Browse/rank smart contracts by balance (limit).",
            "GET /v1/entrypoints": "A contract's named entrypoints / callable interface (address; omit for the top)."
        },
        "description": "Browse Tezos smart contracts live from the public TzKT indexer: rank originated KT1 contracts by balance and activity, read one contract in full (balance, creator, code hash, token activity), and read a contract's named entrypoints (its callable interface). The contract layer for Tezos explorers, dApp dashboards and analytics. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:53.331Z",
        "request_id": "6e1855c5-0593-4749-bd8e-78c53edc4d51"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}