/v1/meta
Service metadata and endpoint catalog
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}