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

Economies ranked by year-on-year real investment growth

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "Economies ranked by year-on-year real investment growth (gross fixed capital formation: machinery, buildings, infrastructure, equipment; chain-linked volume, seasonally adjusted). Investment is the most cyclical, forward-looking part of GDP — firms only commit capex when confident, so it leads the cycle. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
        "board": [
            {
                "code": "SAU",
                "name": "Saudi Arabia",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 7.53,
                "investment_yoy": 17.06
            },
            {
                "code": "SVN",
                "name": "Slovenia",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 1.45,
                "investment_yoy": 12.78
            },
            {
                "code": "GRC",
                "name": "Greece",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": -2.54,
                "investment_yoy": 12.07
            },
            {
                "code": "FIN",
                "name": "Finland",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 6.5,
                "investment_yoy": 11.93
            },
            {
                "code": "IND",
                "name": "India",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 2.58,
                "investment_yoy": 10.84
            },
            {
                "code": "PRT",
                "name": "Portugal",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 1.87,
                "investment_yoy": 9.47
            },
            {
                "code": "CRI",
                "name": "Costa Rica",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 1.24,
                "investment_yoy": 7.58
            },
            {
                "code": "CZE",
                "name": "Czechia",
                "quarter": "2026-Q1",
                "reading": "investment booming",
                "is_aggregate": false,
                "investment_qoq": 2.01,
                "investment_yoy": 7.33
            },
            {
                "code": "AUS",
                "name": "Australia",
                "quarter": "2026-Q1",
         
…