/v1/board
Headline (15+) unemployment rate for every economy, ranked
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/unemployment-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/unemployment-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/unemployment-api/v1/board");
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/board",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "The OECD harmonised, seasonally-adjusted unemployment rate (15+) 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": 2.5,
"trend": "falling (labour market tightening)",
"change": -0.2,
"period": "2026-04",
"previous": 2.7,
"is_aggregate": false
},
{
"code": "MEX",
"name": "Mexico",
"rank": 2,
"rate": 2.56,
"trend": "falling (labour market tightening)",
"change": -0.19,
"period": "2026-04",
"previous": 2.75,
"is_aggregate": false
},
{
"code": "KOR",
"name": "Korea",
"rank": 3,
"rate": 2.8,
"trend": "rising (labour market loosening)",
"change": 0.1,
"period": "2026-04",
"previous": 2.7,
"is_aggregate": false
},
{
"code": "BGR",
"name": "Bulgaria",
"rank": 4,
"rate": 2.8,
"trend": "falling (labour market tightening)",
"change": -0.1,
"period": "2026-04",
"previous": 2.9,
"is_aggregate": false
},
{
"code": "ISR",
"name": "Israel",
"rank": 5,
"rate": 2.92,
"trend": "rising (labour market loosening)",
"change": 0.14,
"period": "2026-04",
"previous": 2.79,
"is_aggregate": false
},
{
"code": "POL",
"name": "Poland",
"rank": 6,
"rate": 3,
"trend": "unchanged",
"change": 0,
"period": "2026-04",
"previous": 3,
"is_aggregate": false
},
{
"code": "CZE",
"name": "Czechia",
"rank": 7,
"rate": 3.1,
"trend": "falling (labour market tightening)",
"change": -0.1,
"period": "2026-04",
"previous": 3.2,
"is_aggregate": false
},
{
"code": "DEU",
…