/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/employment-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/employment-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/employment-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "board and momentum take countries_only (true to drop aggregates such as OECD, G20, EU). country takes country (ISO-3 code or name, required). meta takes no parameters. Growth figures are in percent; yoy is year-on-year, qoq is quarter-on-quarter, computed from the employment count. Quarterly data; a multi-hour protective cache fronts the OECD upstream.",
"source": "OECD Quarterly National Accounts (DF_QNA_POP_EMPNC, total employment EMP) via OECD SDMX API, seasonally adjusted, live, keyless",
"service": "employment-api",
"economies": null,
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/board": "Economies ranked by year-on-year employment growth (countries_only optional).",
"GET /v1/country": "One economy's employment growth, year-on-year and quarter-on-quarter (country=ESP).",
"GET /v1/momentum": "Economies ranked by the latest quarter-on-quarter employment move."
},
"description": "Employment growth — how fast the number of people in work is growing in each economy, live from the OECD's Quarterly National Accounts (no key). It computes the quarter-on-quarter and year-on-year growth of total employment from the OECD's seasonally-adjusted employment count. board ranks economies by year-on-year employment growth; momentum ranks by the latest quarter-on-quarter move; country gives one economy's figures with a plain-language read. The jobs number — the demand-side companion to the unemployment rate (the two can move independently). The labour-demand / jobs cut — distinct from the harmonised unemployment-rate board (the share out of work), the leading-indicator and GDP boards, the annual IMF database, and the generic data aggregator.",
"united_states": null,
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-12T19:37:01.923Z",
"request_id": "0c1da57e-0126-40f8-981c-32567d8daa0a"
},
"status": "ok",
"message": "Meta",
"success": true
}