Ir al contenido
GET /v1/sellingprices

Economies ranked by the selling-price balance (pipeline inflation)

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

Respuesta de ejemplo

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

{
    "data": {
        "note": "Economies ranked by the selling-price-expectations balance — the share of factories planning to raise prices minus those planning to cut. A leading gauge of pipeline inflation: a rising balance flags price pressure building before it shows in the CPI. Each row carries its own month; discontinued series excluded. Monthly, cached a few hours.",
        "board": [
            {
                "code": "LUX",
                "name": "Luxembourg",
                "change": 17.8,
                "period": "2026-05",
                "balance": 57.2,
                "is_aggregate": false
            },
            {
                "code": "TUR",
                "name": "Türkiye",
                "change": -1.2,
                "period": "2026-05",
                "balance": 47.8,
                "is_aggregate": false
            },
            {
                "code": "COL",
                "name": "Colombia",
                "change": 4.7,
                "period": "2026-04",
                "balance": 47.8,
                "is_aggregate": false
            },
            {
                "code": "CHL",
                "name": "Chile",
                "change": -9.8,
                "period": "2026-05",
                "balance": 42.7,
                "is_aggregate": false
            },
            {
                "code": "IRL",
                "name": "Ireland",
                "change": -20.4,
                "period": "2026-05",
                "balance": 40.7,
                "is_aggregate": false
            },
            {
                "code": "FIN",
                "name": "Finland",
                "change": 2,
                "period": "2026-05",
                "balance": 36,
                "is_aggregate": false
            },
            {
                "code": "ROU",
                "name": "Romania",
                "change": -3.7,
                "period": "2026-05",
                "balance": 33.3,
                "is_aggregate": false
            },
            {
                "code": "DEU",
                "name": "Germany",
                "change": -2.3,
                "period": "2026-05",
                "balance": 30.9,
                "is_aggregate": false
            },
            {
                "code": "BEL",
                "name": "Belgium",
                "change": 2.6,
                "period": "2026-05",
                "balance": 30.5,
                "is_aggregate": false
            },
            {
                "code": "PRT",
                "name": "Portugal",
                "change": 0.7,
                "period": "2026-05",
                "balance": 29.2,
                "is_aggregate": false
            },
            {
                "code": "HUN",
                "name": "Hungary",
                "change": 3.3,
                "period": "2026-05",
                "balance": 29,
                "is_aggregate": false
            },
            {
           
…