Skip to content
GET /v1/indicators

List available indicators

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 3,
        "indicators": [
            {
                "code": "unemployment_rate",
                "unit": "% of labour force",
                "label": "Harmonised unemployment rate (monthly)"
            },
            {
                "code": "cpi_index",
                "unit": "index",
                "label": "Consumer Price Index (all items, monthly)"
            },
            {
                "code": "long_term_interest_rate",
                "unit": "% per annum",
                "label": "Long-term interest rate (10-year government bonds, monthly)"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:01.827Z",
        "request_id": "5dd6e3cd-1bb0-486b-9d2c-1695d8bf1e1b"
    },
    "status": "ok",
    "message": "Indicators retrieved successfully",
    "success": true
}