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

Service metadata and endpoint catalog

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

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

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

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

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

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

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

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

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

{
    "data": {
        "source": "Central Bank of Uzbekistan API (cbu.uz, live)",
        "service": "cbu-api",
        "usd_uzs": 12035.22,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/rate": "One currency's official rate, soum-per-unit and inverse, plus daily change (currency=USD).",
            "GET /v1/rates": "The CBU official rate for every currency vs the soum, with daily change.",
            "GET /v1/convert": "Convert an amount between two currencies at CBU rates (from=USD, to=EUR, amount=100).",
            "GET /v1/history": "A currency's official rate on a specific past date (currency=USD, date=2026-05-15)."
        },
        "description": "Live official exchange-rate data from the Central Bank of the Republic of Uzbekistan (CBU), the central bank of Uzbekistan, for the Uzbek soum (UZS), via its public API — one of the widest official rate lists of any central bank (over 70 currencies), each with its daily change. The rates endpoint returns the CBU's official rate for every published currency against the soum, normalised to one unit, with the day's change; the rate endpoint returns a single currency's official rate (soum-per-unit and the inverse) plus the daily change; the history endpoint returns a currency's official rate on a specific past date; the convert endpoint converts an amount between any two published currencies (including UZS) at the CBU's official rates, cross-computed through the soum. Live, no key, nothing stored. Distinct from the ECB, SNB, Bank of Canada, Norges Bank, NBP, CNB, BCB, CBR, Riksbank, NBU, HNB, NBG and NBRB feeds and from market mid-rates — this is the Central Bank of Uzbekistan's own official soum exchange rate with daily change.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:28.903Z",
        "request_id": "584d8b3d-a23b-49c9-a9a3-c22d094c9305"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}