/v1/meta
Chain metadata & endpoint guide
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/archway-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/archway-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/archway-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/archway-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": {
"chain": "archway-1",
"token": "ARCH",
"source": "Archway public Cosmos REST/LCD, keyless (3-mirror)",
"network": "Archway",
"decimals": 18,
"examples": {
"validators": "/v1/validators?limit=20",
"rewards_pool": "/v1/rewards-pool",
"rewards_params": "/v1/rewards-params"
},
"endpoints": {
"/v1/block": "latest block (height, time, chain_id)",
"/v1/supply": "total ARCH supply",
"/v1/staking": "staking pool, bonded ratio and params",
"/v1/validators": "bonded validator set ranked by voting power (limit)",
"/v1/rewards-pool": "dApp rewards pool — undistributed & treasury funds (ARCH)",
"/v1/block-rewards": "current block inflation & tx rewards tracking",
"/v1/rewards-params": "x/rewards params (inflation-rewards ratio, tx-fee rebate ratio, min gas price)"
},
"micro_denom": "aarch",
"cache_ttl_ms": 20000
},
"meta": {
"timestamp": "2026-06-15T02:09:53.594Z",
"request_id": "43901f20-ed69-4919-9713-9bfaac0a2fb2"
},
"status": "ok",
"message": "Meta",
"success": true
}