Ir al contenido
GET /v1/country

One economy's full manufacturing survey panel

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/businesssurvey-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "code": "DEU",
        "name": "Germany",
        "note": "One economy's manufacturing business-tendency survey panel: order books and export order books (current demand), and production, selling-price and employment expectations (forward-looking). Each is a percentage balance — positive means expansion/optimism (or, for selling prices, price rises planned), with the month-on-month change. Soft data that leads the hard numbers. Monthly, cached a few hours.",
        "period": "2026-05",
        "source": "OECD Business Tendency Surveys (SDMX), manufacturing",
        "survey": {
            "order_books": {
                "change": -0.8,
                "balance": -28.7
            },
            "selling_prices": {
                "change": -2.3,
                "balance": 30.9
            },
            "export_order_books": {
                "change": -3.1,
                "balance": -27.5
            },
            "employment_expectations": {
                "change": 1.3,
                "balance": -19.2
            },
            "production_expectations": {
                "change": -1.7,
                "balance": -5.7
            }
        },
        "is_aggregate": false
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:36.740Z",
        "request_id": "cd7b551f-8035-455b-90ed-d71ee57449e6"
    },
    "status": "ok",
    "message": "Country business survey retrieved successfully",
    "success": true
}