/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/fxheatmap-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxheatmap-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxheatmap-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/fxheatmap-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": "matrix is parameter-less; cross takes base= and quote= (majors only). Crosses are derived from each currency's USD value; daily change from the legs' last two closes. Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily FX rates, live",
"service": "fxheatmap-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/cross": "One cross rate and daily change (base=EUR, quote=JPY).",
"GET /v1/matrix": "Full 8x8 cross-rate grid + daily-change heatmap + strongest/weakest.",
"GET /v1/currencies": "The supported currencies."
},
"currencies": [
"USD",
"EUR",
"GBP",
"JPY",
"CHF",
"AUD",
"CAD",
"NZD"
],
"description": "FX cross-rate heatmap & matrix — the full grid of every major currency against every other with the day's move in each cell, live from Yahoo Finance (no key, nothing stored). matrix returns the whole rate grid plus the change-on-the-day heatmap and the strongest/weakest currency. cross returns one pair's rate and daily change. currencies lists what is covered. The FX cross-rate matrix / heatmap cut — distinct from the bring-your-own-rates cross-rate & triangular-arbitrage calculator, the currency-strength meter and the single-pair price APIs.",
"upstream_status": "ok",
"currencies_loaded": 8
},
"meta": {
"timestamp": "2026-06-12T10:35:15.102Z",
"request_id": "3164716b-9706-4968-b070-23a6c984ca2f"
},
"status": "ok",
"message": "Meta",
"success": true
}