Ir al contenido
GET /v1/momentum

Economies ranked by the latest quarter-on-quarter investment move

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/investmentgrowth-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/investmentgrowth-api/v1/momentum" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/investmentgrowth-api/v1/momentum", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/investmentgrowth-api/v1/momentum");
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/investmentgrowth-api/v1/momentum",
    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 latest quarter-on-quarter move in real investment (gross fixed capital formation) — the freshest read on the capex cycle. Year-on-year alongside. Quarterly, cached a few hours.",
        "board": [
            {
                "code": "SAU",
                "name": "Saudi Arabia",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 7.53,
                "investment_yoy": 17.06
            },
            {
                "code": "FIN",
                "name": "Finland",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 6.5,
                "investment_yoy": 11.93
            },
            {
                "code": "LUX",
                "name": "Luxembourg",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 5.22,
                "investment_yoy": 4.43
            },
            {
                "code": "BRA",
                "name": "Brazil",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 3.52,
                "investment_yoy": -1.61
            },
            {
                "code": "AUS",
                "name": "Australia",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 3.01,
                "investment_yoy": 6.47
            },
            {
                "code": "ISR",
                "name": "Israel",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 3.01,
                "investment_yoy": 5.83
            },
            {
                "code": "KOR",
                "name": "Korea",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 2.93,
                "investment_yoy": 1.25
            },
            {
                "code": "IND",
                "name": "India",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 2.58,
                "investment_yoy": 10.84
            },
            {
                "code": "LVA",
                "name": "Latvia",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 2.46,
                "investment_yoy": 2.88
            },
            {
                "code": "COL",
                "name": "Colombia",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 2.04,
                "investment_yoy": 4.92
            },
            {
                "code": "CZE",
                "name": "Czechia",
                "quarter": "2026-Q1",
                "is_aggregate": false,
                "investment_qoq": 2.01,
                "investment_yoy
…