/v1/indicators
List available indicators
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}