/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/currencystrength-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencystrength-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencystrength-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/currencystrength-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "ECB daily reference rates via Frankfurter (live)",
"periods": [
"1d",
"7d",
"2w",
"1m",
"3m"
],
"service": "currencystrength-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pair": "Cross-rate and period change for a pair (base=EUR"e=USD, period=).",
"GET /v1/currency": "One currency's strength, rank and per-pair changes (code=USD, period=).",
"GET /v1/strength": "Full currency strength ranking for a period (period=1d|7d|2w|1m|3m)."
},
"description": "Live currency strength meter computed from ECB reference rates (Frankfurter): ranks 30+ currencies by their average move against the whole basket over a period. Get the full strength ranking, one currency's strength + per-pair changes, or a pair's cross-rate and change. Live, no key. Distinct from raw exchange-rate APIs.",
"currencies_live": 30
},
"meta": {
"timestamp": "2026-06-09T03:03:45.138Z",
"request_id": "15e51639-a097-4a3d-a562-7d5fe5615b3c"
},
"status": "ok",
"message": "Meta",
"success": true
}