Skip to content
GET /v1/meta

Service metadata

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

Example response

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

{
    "data": {
        "name": "OECD Economic Indicators API",
        "source": "OECD SDMX Data API (sdmx.oecd.org)",
        "endpoints": [
            {
                "path": "/v1/indicators",
                "description": "List available indicators"
            },
            {
                "path": "/v1/countries",
                "description": "List supported OECD countries"
            },
            {
                "path": "/v1/indicator",
                "description": "Latest value of one indicator for one country (?code=unemployment_rate&country=USA)"
            },
            {
                "path": "/v1/snapshot",
                "description": "All indicators for one country (?country=USA)"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of the public OECD SDMX data API. Not affiliated with the OECD. Data only; refer to OECD for authoritative figures.",
        "indicators": [
            "unemployment_rate",
            "cpi_index",
            "long_term_interest_rate"
        ],
        "description": "Key macroeconomic indicators for OECD member countries, sourced from the official OECD SDMX data API: harmonised unemployment rate, consumer price index and long-term (10-year government bond) interest rate. Values always resolve to the latest published period."
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:07.934Z",
        "request_id": "6789d2de-5370-424c-980d-493d817b3db4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}