/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}