/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/currencycodes-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencycodes-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencycodes-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/currencycodes-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "currencycodes-api",
"endpoints": {
"GET /v1/code": "Currency detail by alphabetic code (code=, e.g. USD) or numeric (number=, e.g. 840).",
"GET /v1/list": "List all currencies (limit, offset, active=true to filter out withdrawn).",
"GET /v1/meta": "This document.",
"GET /v1/search": "Search currencies by code, name or country (q=, min 2 chars).",
"GET /v1/country": "Currencies used by a country (country=, e.g. Japan)."
},
"description": "ISO 4217 currency-code register (no FX rates): 3-letter alphabetic code, 3-digit numeric code, official currency name, minor-unit decimal places and the countries using each currency. The metadata a checkout or accounting system needs to format and validate money. No key.",
"total_currencies": 307,
"active_currencies": 178,
"countries_indexed": 261
},
"meta": {
"timestamp": "2026-06-08T18:25:12.980Z",
"request_id": "6ba814c8-0dff-4f3a-9fbf-ea6b33325b7b"
},
"status": "ok",
"message": "Meta",
"success": true
}