/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/btcrates-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btcrates-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btcrates-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/btcrates-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "BTC is the base (value 1). unit is a CoinGecko code (usd, eur, xau=gold, xag=silver, eth, sats=satoshi). Results are cached briefly to protect the keyless rate-limited upstream.",
"source": "CoinGecko exchange rates (api.coingecko.com/api/v3/exchange_rates, live)",
"btc_usd": 62603.579,
"service": "btcrates-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rate": "One BTC valued in a single unit (unit=xau, unit=usd, unit=eth).",
"GET /v1/rates": "One BTC valued in every unit (fiat, commodity, crypto), sorted by code.",
"GET /v1/groups": "Units split into fiat, commodity and crypto — what one BTC buys across asset classes."
},
"description": "The value of one bitcoin expressed across every unit CoinGecko tracks — world fiat currencies, precious metals (gold/silver, troy ounce) and other cryptocurrencies. The 'Bitcoin standard' / unit-of-account view: how much of each asset one BTC buys right now (1 BTC in dollars, euros, ounces of gold, ether, satoshi…). The rates endpoint returns every unit; the rate endpoint returns one unit; the groups endpoint splits units into fiat, commodity and crypto. Live, no key, nothing stored. The Bitcoin-denominated reference-index cut — distinct from the coin-price converters, market-overview and per-exchange APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:46:45.892Z",
"request_id": "c2861395-cd7f-4cd0-b6f9-f15a8da286bf"
},
"status": "ok",
"message": "Meta",
"success": true
}