/v1/board
Economies ranked by year-on-year employment growth
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/employment-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/employment-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/employment-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/employment-api/v1/board",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Economies ranked by year-on-year growth in the number of people employed (total economy, seasonally adjusted), computed from the OECD's employment count. This is the jobs number — the demand-side companion to the unemployment rate; the two can move independently. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
"board": [
{
"code": "ESP",
"name": "Spain",
"quarter": "2026-Q1",
"reading": "hiring strongly",
"is_aggregate": false,
"employment_qoq": 0.63,
"employment_yoy": 2.57
},
{
"code": "PRT",
"name": "Portugal",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": -0.22,
"employment_yoy": 1.94
},
{
"code": "BGR",
"name": "Bulgaria",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 0.22,
"employment_yoy": 1.73
},
{
"code": "DNK",
"name": "Denmark",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 0.52,
"employment_yoy": 1.27
},
{
"code": "ITA",
"name": "Italy",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 0.48,
"employment_yoy": 1.21
},
{
"code": "HRV",
"name": "Croatia",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 0.04,
"employment_yoy": 1.13
},
{
"code": "GBR",
"name": "United Kingdom",
"quarter": "2025-Q4",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 0.15,
"employment_yoy": 1.13
},
{
"code": "CZE",
"name": "Czechia",
"quarter": "2026-Q1",
"reading": "employment growing",
"is_aggregate": false,
"employment_qoq": 2.5,
"employment_yoy": 1.07
},
{
"code": "LUX",
"name": "Luxembourg",
"quarter": "2026-Q1",
"reading": "employment growing",
…