/v1/youth
Youth (15-24) unemployment rate for every economy, ranked
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
},
…