Aller au contenu
GET /v1/youth

Youth (15-24) unemployment rate for every economy, ranked

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/unemployment-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/unemployment-api/v1/youth" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/unemployment-api/v1/youth", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/unemployment-api/v1/youth");
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/unemployment-api/v1/youth",
    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": "The OECD harmonised, seasonally-adjusted youth unemployment rate (15-24) for every tracked economy (and aggregates unless countries_only=true), in percent of the labour force, ranked from the tightest labour market (lowest rate) to the loosest. change is the month-on-month move; a rising rate means the labour market is loosening. Each row carries its own period (economies report with a varying lag); discontinued series are excluded. Monthly, cached a few hours.",
        "board": [
            {
                "code": "JPN",
                "name": "Japan",
                "rank": 1,
                "rate": 3.6,
                "trend": "falling (labour market tightening)",
                "change": -0.2,
                "period": "2026-04",
                "previous": 3.8,
                "is_aggregate": false
            },
            {
                "code": "ISR",
                "name": "Israel",
                "rank": 2,
                "rate": 4,
                "trend": "falling (labour market tightening)",
                "change": -0.3,
                "period": "2026-04",
                "previous": 4.3,
                "is_aggregate": false
            },
            {
                "code": "MEX",
                "name": "Mexico",
                "rank": 3,
                "rate": 6.1,
                "trend": "rising (labour market loosening)",
                "change": 0.02,
                "period": "2026-04",
                "previous": 6.07,
                "is_aggregate": false
            },
            {
                "code": "DEU",
                "name": "Germany",
                "rank": 4,
                "rate": 7.2,
                "trend": "falling (labour market tightening)",
                "change": -0.1,
                "period": "2026-04",
                "previous": 7.3,
                "is_aggregate": false
            },
            {
                "code": "KOR",
                "name": "Korea",
                "rank": 5,
                "rate": 7.31,
                "trend": "rising (labour market loosening)",
                "change": 0.46,
                "period": "2026-04",
                "previous": 6.84,
                "is_aggregate": false
            },
            {
                "code": "LVA",
                "name": "Latvia",
                "rank": 6,
                "rate": 8.2,
                "trend": "rising (labour market loosening)",
                "change": 0.6,
                "period": "2026-04",
                "previous": 7.6,
                "is_aggregate": false
            },
            {
                "code": "NLD",
                "name": "Netherlands",
                "rank": 7,
                "rate": 8.7,
                "trend": "falling (labour market tightening)",
                "change": -0.2,
                "period": "2026-04",
                "previous": 8.9,
                "is_aggregate": false
            },
           
…