Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/fxheatmap-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}