Vai al contenuto
GET /v1/currencies

Supported currencies

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/fxheatmap-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/fxheatmap-api/v1/currencies" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxheatmap-api/v1/currencies", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxheatmap-api/v1/currencies");
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/currencies",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Supported major currencies. Pass any two as base=/quote= to /v1/cross. The matrix covers every pair.",
        "count": 8,
        "source": "Yahoo Finance",
        "currencies": [
            "USD",
            "EUR",
            "GBP",
            "JPY",
            "CHF",
            "AUD",
            "CAD",
            "NZD"
        ]
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:14.973Z",
        "request_id": "48e10b2f-ef6e-4e6a-b76d-18448499e926"
    },
    "status": "ok",
    "message": "Currencies retrieved successfully",
    "success": true
}