Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/currencycodes-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}