Skip to content
GET /v1/services

Economies ranked by services value-added growth

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gdpsector-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Economies ranked by year-on-year real growth in services gross value added (chain-linked volume, seasonally adjusted). Value added by sector decomposes GDP — it shows which part of the economy is carrying the expansion. Each row carries its own quarter; discontinued series are excluded. Quarterly, cached a few hours.",
        "board": [
            {
                "qoq": 1.07,
                "yoy": 4.25,
                "code": "CRI",
                "name": "Costa Rica",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.84,
                "yoy": 3.75,
                "code": "TUR",
                "name": "Türkiye",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.29,
                "yoy": 3.56,
                "code": "BGR",
                "name": "Bulgaria",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 1.27,
                "yoy": 3.55,
                "code": "DNK",
                "name": "Denmark",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.51,
                "yoy": 3.49,
                "code": "POL",
                "name": "Poland",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.81,
                "yoy": 3.39,
                "code": "COL",
                "name": "Colombia",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.75,
                "yoy": 3.36,
                "code": "ESP",
                "name": "Spain",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": -0.14,
                "yoy": 2.88,
                "code": "LTU",
                "name": "Lithuania",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 1.28,
                "yoy": 2.44,
                "code": "PRT",
                "name": "Portugal",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.58,
                "yoy": 2.37,
                "code": "SAU",
                "name": "Saudi Arabia",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": 0.49,
                "yoy": 2.31,
                "code": "CZE",
                "name": "Czechia",
                "quarter": "2026-Q1",
                "is_aggregate": false
            },
            {
                "qoq": -0.46,
                "yoy": 2.23,
                "code": 
…