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

Service metadata and endpoint catalog

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

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

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

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

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

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

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_..."}
)

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

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

{
    "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
}