Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "source": "api.yadio.io (crypto-implied FX, live)",
        "btc_usd": 61405.96,
        "service": "yadio-api",
        "endpoints": {
            "GET /v1/btc": "BTC price in a chosen currency — the crypto bridge (currency=USD).",
            "GET /v1/meta": "This document.",
            "GET /v1/rates": "One base currency against ~130 currencies plus BTC price (base=USD).",
            "GET /v1/convert": "Convert an amount between two currencies (amount=100, from=USD, to=ARS).",
            "GET /v1/currencies": "Every supported currency (code and name)."
        },
        "description": "Live real market exchange rates derived from local cryptocurrency (BTC/USDT) trading. Because they are implied by where people actually buy and sell crypto, Yadio's rates track the true street/parallel value of a currency — for stressed currencies (Argentine peso, Nigerian naira, Venezuelan bolívar …) this is far from the official rate. The rates endpoint returns one base currency against ~130 currencies plus the BTC price; the convert endpoint converts any amount between two currencies; the btc endpoint returns the BTC price in a chosen currency (the crypto bridge that powers every rate); the currencies endpoint lists every supported currency. Live, no key, nothing stored. Distinct from official ECB/central-bank rate feeds and from single-country parallel-dollar APIs — this is a global crypto-implied real-rate layer.",
        "usd_ars_real": 1497.4205,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:27.017Z",
        "request_id": "53b1be02-322a-4714-813a-4c97a5ccff21"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}