Aumatex developer platform

Small, boring APIs
that our apps depend on.

auma.dev is the shared backend of the Aumatex apps — exchange rates, remote configuration, short links — and a set of public endpoints for Italian developers: codice fiscale, partita IVA and IBAN validation. JSON over HTTPS, cached at the edge, documented in OpenAPI, no keys required.

request
curl https://auma.dev/v1/fx/latest?base=EUR&symbols=USD,GBP,CHF,BTC
response · live
{
  "base": "EUR",
  "date": "2026-09-16",
  "count": 4,
  "rates": {
    "USD": 1.15425415,
    "GBP": 0.8562203,
    "CHF": 0.94496396,
    "BTC": 0.000015226607
  }
}

Endpoints

/fx

Daily fiat and crypto exchange rates (340+ currencies), from the open fawazahmed0/currency-api dataset.

/it

Italian identifiers: codice fiscale, partita IVA, IBAN. Pure computation, no data leaves the request.

/apps

Remote configuration for the Aumatex iOS apps.

/platform

Service metadata.

Cached, not throttled

Every GET carries Cache-Control; identical requests are answered by the CDN without touching a function. Rates refresh hourly, validators are deterministic.

Nothing is stored

Validators compute the answer and forget the input. There are no accounts, cookies or analytics on this domain.

One contract

The docs, openapi.json and llms.txt are generated from the same definition, so they cannot drift.