/v1/code
Currency by alphabetic or numeric code
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}