/v1/token
One wrapper's detail by symbol
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}