/v1/country
One economy's retail-sales growth, year-on-year and month-on-month
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/retailsales-api/v1/country" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/retailsales-api/v1/country", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/retailsales-api/v1/country");
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/retailsales-api/v1/country",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"code": "USA",
"name": "United States",
"note": "One economy's retail-sales growth, year-on-year and month-on-month, from the OECD's seasonally-adjusted retail-trade-volume index. A positive year-on-year change means real retail volume is above its level a year earlier. Monthly, cached a few hours.",
"period": "2026-03",
"source": "OECD retail trade volume (SDMX)",
"is_aggregate": false,
"retail_sales": {
"mom": 1,
"yoy": 2.5,
"reading": "retail growing"
}
},
"meta": {
"timestamp": "2026-06-12T19:37:28.657Z",
"request_id": "0460a097-2e74-4f21-b8f6-1090ad749a7c"
},
"status": "ok",
"message": "Country retail sales retrieved successfully",
"success": true
}