/v1/token
One wrapper's detail by symbol
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/wrappedbitcoin-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wrappedbitcoin-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wrappedbitcoin-api/v1/token");
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/wrappedbitcoin-api/v1/token",
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": {
"btc": 42268.0816,
"note": "One wrapped-Bitcoin token's on-chain detail: the BTC it holds (total supply ÷ decimals, 1:1 backed), its USD value, its issuer/custodian and whether the BTC is held custodially or by a decentralised bridge. Live, cached ~5m.",
"issuer": "Coinbase",
"source": "Ethereum public JSON-RPC (cbBTC contract) + Yahoo Finance, keyless",
"symbol": "cbBTC",
"custody": "custodial",
"contract": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
"decimals": 8,
"value_usd": 2688520505,
"btc_price_usd": 63606.4
},
"meta": {
"timestamp": "2026-06-12T19:35:40.847Z",
"request_id": "ea5868c6-21e1-49f1-927e-20119f2a81b2"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}