/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/redstone-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/redstone-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/redstone-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/redstone-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Values are USD (FX pairs are vs USD). Symbols are case-insensitive (BTC, ETH, AAPL, XAU, EUR, wstETH, weETH). timestamp is when the oracle signed the price.",
"source": "RedStone oracle (api.redstone.finance/prices, live)",
"btc_usd": 63298.3919,
"service": "redstone-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/price": "One asset's latest oracle price (symbol=BTC).",
"GET /v1/prices": "Many assets at once — mix any classes (symbols=BTC,ETH,AAPL,XAU,EUR).",
"GET /v1/symbols": "List or search every supported asset (search=, limit=100)."
},
"description": "Live oracle price feeds for 1000+ assets across every class in one source: cryptocurrencies, US equities and ETFs, precious metals and commodities, fiat currencies and liquid-staking and real-world-asset tokens, from the public RedStone oracle that DeFi protocols read for prices. The cross-asset reference-price cut — Bitcoin, Apple, gold, the euro and wstETH side by side, each with its oracle timestamp. The price endpoint returns one asset's latest value; the prices endpoint returns many assets at once (mix crypto, stocks, metals, FX); the symbols endpoint lists and searches supported assets. Live, no key, nothing stored. The multi-asset oracle-price cut — distinct from the single-asset-class price, converter and metals APIs.",
"upstream_status": "ok",
"supported_assets": 1191
},
"meta": {
"timestamp": "2026-06-12T01:42:59.615Z",
"request_id": "1366bf92-078f-46cb-bc34-145361658c01"
},
"status": "ok",
"message": "Meta",
"success": true
}