/v1/token
One wrapper's detail by symbol
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}