/v1/wages
Economies ranked by wage growth (compensation per employee)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/labourcosts-api/v1/wages" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/labourcosts-api/v1/wages", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/labourcosts-api/v1/wages");
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/labourcosts-api/v1/wages",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Economies ranked by year-on-year growth in labour compensation per employee — the clean per-worker wage measure. Pay growth is the key input central banks watch for second-round inflation; how much of it feeds into costs depends on productivity (shown alongside). Quarterly year-on-year, cached a few hours.",
"board": [
{
"code": "TUR",
"name": "Türkiye",
"quarter": "2025-Q4",
"wages_yoy": 40.47,
"is_aggregate": false,
"productivity_yoy": 3.45,
"unit_labour_costs_yoy": 34.73
},
{
"code": "LTU",
"name": "Lithuania",
"quarter": "2025-Q4",
"wages_yoy": 12.08,
"is_aggregate": false,
"productivity_yoy": 5.97,
"unit_labour_costs_yoy": 5.77
},
{
"code": "POL",
"name": "Poland",
"quarter": "2025-Q4",
"wages_yoy": 9.61,
"is_aggregate": false,
"productivity_yoy": 2.91,
"unit_labour_costs_yoy": 6.51
},
{
"code": "HUN",
"name": "Hungary",
"quarter": "2025-Q4",
"wages_yoy": 9.19,
"is_aggregate": false,
"productivity_yoy": 0.18,
"unit_labour_costs_yoy": 9
},
{
"code": "CZE",
"name": "Czechia",
"quarter": "2025-Q4",
"wages_yoy": 7.64,
"is_aggregate": false,
"productivity_yoy": 1.65,
"unit_labour_costs_yoy": 5.89
},
{
"code": "LVA",
"name": "Latvia",
"quarter": "2025-Q4",
"wages_yoy": 7.63,
"is_aggregate": false,
"productivity_yoy": 1.24,
"unit_labour_costs_yoy": 6.31
},
{
"code": "CRI",
"name": "Costa Rica",
"quarter": "2025-Q1",
"wages_yoy": 7.62,
"is_aggregate": false,
"productivity_yoy": 0.74,
"unit_labour_costs_yoy": 6.83
},
{
"code": "SVN",
"name": "Slovenia",
"quarter": "2025-Q4",
"wages_yoy": 6.53,
"is_aggregate": false,
"productivity_yoy": 1.83,
"unit_labour_costs_yoy": 4.61
},
{
"code": "GBR",
"name": "United Kingdom",
"quarter": "2025-Q3",
"wages_yoy": 6.24,
"is_aggregate": false,
"productivity_yoy": 0.05,
"unit_labour_cost
…