Aller au contenu
GET /v1/wages

Economies ranked by wage growth (compensation per employee)

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/labourcosts-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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