/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/cbar-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cbar-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cbar-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/cbar-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 Azerbaijan daily rate file (cbar.az, live)",
"service": "cbar-api",
"usd_azn": 1.7,
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rate": "One currency's official rate, manat-per-unit and inverse (currency=USD).",
"GET /v1/rates": "The CBAR official rate for every currency vs the manat.",
"GET /v1/metals": "Official gold, silver, platinum and palladium prices per troy ounce in manat.",
"GET /v1/convert": "Convert an amount between two currencies at CBAR rates (from=USD, to=EUR, amount=100)."
},
"description": "Live official exchange-rate data from the Central Bank of the Republic of Azerbaijan (CBAR), the central bank of Azerbaijan, for the Azerbaijani manat (AZN), via its public daily rate file — uniquely also publishing official bank metal prices. The rates endpoint returns the CBAR's official rate for every published currency against the manat, normalised to one unit; the rate endpoint returns a single currency's official rate (manat-per-unit and the inverse); the metals endpoint returns the official price of gold, silver, platinum and palladium per troy ounce in manat; the convert endpoint converts an amount between any two published currencies (including AZN) at the CBAR's official rates, cross-computed through the manat. Live, no key, nothing stored. Distinct from the ECB, SNB, NBU, HNB, NBG, NBRB, CBU and other central-bank feeds and from market mid-rates — this is the Central Bank of Azerbaijan's own official manat rate plus official bank-metal prices.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T14:00:20.623Z",
"request_id": "6532018b-418b-412a-a307-a81b7f366d46"
},
"status": "ok",
"message": "Meta",
"success": true
}