Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/unemployment-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/unemployment-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/unemployment-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/unemployment-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/unemployment-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "board and youth take countries_only (true to drop aggregates). country takes country (ISO-3 code or name, required). meta takes no parameters. Rates are in percent of the labour force; rank 1 = lowest rate (tightest labour market). Monthly data; a multi-hour protective cache fronts the OECD upstream.",
        "source": "OECD harmonised unemployment via OECD SDMX API (monthly, seasonally adjusted), live, keyless",
        "service": "unemployment-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/board": "Headline (15+) unemployment rate for every economy, ranked tightest to loosest (countries_only optional).",
            "GET /v1/youth": "Youth (15-24) unemployment rate for every economy, ranked.",
            "GET /v1/country": "Headline + youth unemployment for one economy with its rank (country=USA)."
        },
        "description": "OECD harmonised unemployment — the monthly seasonally-adjusted unemployment rate of every major economy on one comparable screen, live from the OECD (no key). board returns the headline (15+) rate for every economy ranked from tightest to loosest labour market, with the month-on-month change and trend; youth returns the 15-24 rate the same way; country puts headline and youth together for one economy with its rank and recent direction. The labour-market / unemployment cut — distinct from the annual IMF World Economic Outlook (yearly figure and forecast, not the live monthly print), the inflation and bond-yield boards, and the generic data aggregator.",
        "united_states": {
            "youth": 9.4,
            "headline": 4.3
        },
        "upstream_status": "ok",
        "youth_economies": 43,
        "headline_economies": 43
    },
    "meta": {
        "timestamp": "2026-06-12T19:37:46.602Z",
        "request_id": "6167f8cb-e6be-4481-b454-b43fce1bc42d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}