/v1/code
Currency by alphabetic or numeric code
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/currencycodes-api/v1/code" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencycodes-api/v1/code", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencycodes-api/v1/code");
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/currencycodes-api/v1/code",
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": {
"currency": {
"code": "USD",
"name": "US Dollar",
"active": true,
"numeric": "840",
"countries": [
"AMERICAN SAMOA",
"BONAIRE, SINT EUSTATIUS AND SABA",
"BRITISH INDIAN OCEAN TERRITORY (THE)",
"ECUADOR",
"EL SALVADOR",
"GUAM",
"HAITI",
"MARSHALL ISLANDS (THE)",
"MICRONESIA (FEDERATED STATES OF)",
"NORTHERN MARIANA ISLANDS (THE)",
"PALAU",
"PANAMA",
"PUERTO RICO",
"TIMOR-LESTE",
"TURKS AND CAICOS ISLANDS (THE)",
"UNITED STATES MINOR OUTLYING ISLANDS (THE)",
"UNITED STATES OF AMERICA (THE)",
"VIRGIN ISLANDS (BRITISH)",
"VIRGIN ISLANDS (U.S.)"
],
"minor_unit": 2
}
},
"meta": {
"timestamp": "2026-06-08T18:25:12.472Z",
"request_id": "50e1b683-d4bf-43d4-bef7-9f196c97ae62"
},
"status": "ok",
"message": "Currency retrieved successfully",
"success": true
}