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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "board and manufacturing take no required parameters. country takes country (ISO-3 code or name, required). meta takes no parameters. Growth figures are in percent; yoy is year-on-year, mom is month-on-month, computed from the production-volume index. Monthly data; a multi-hour protective cache fronts the OECD upstream.",
        "source": "OECD industrial production (DF_INDSERV) via OECD SDMX API (PRVM index, seasonally adjusted), live, keyless",
        "service": "industrialproduction-api",
        "economies": 47,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/board": "Economies ranked by industrial-production growth (industry excl. construction), with manufacturing.",
            "GET /v1/country": "One economy's industrial and manufacturing production growth (country=USA).",
            "GET /v1/manufacturing": "Economies ranked by manufacturing output growth."
        },
        "description": "Industrial production — how much each economy's factories, mines and utilities are producing and which way output is turning, live from the OECD (no key). It computes the year-on-year and month-on-month growth of the production-volume index for industry (excluding construction) and manufacturing. board ranks economies by industrial-production growth with manufacturing alongside; manufacturing ranks by manufacturing growth; country gives one economy's figures. A headline monthly hard-data print that feeds GDP nowcasts. The industrial-output cut — distinct from the leading-indicator and confidence boards (soft survey data), the annual IMF database, and the generic data aggregator.",
        "united_states": {
            "ip_yoy": 1.35,
            "manufacturing_yoy": 1.3
        },
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:37:33.757Z",
        "request_id": "6e7d2e97-66a6-425c-bbb6-ddb17cbe10d9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}