Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/fincalc-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/fincalc-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fincalc-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fincalc-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/fincalc-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "auth": "none upstream; this gateway requires x-api-key",
        "name": "Financial Calculator API",
        "note": "Loan amortization (/v1/loan: principal, rate, years; ?schedule=true for the table; ?extra= for extra payments), mortgage PITI (/v1/mortgage: price/down_payment or principal, rate, years, property_tax, insurance, pmi, hoa), compound interest (/v1/compound-interest: principal, rate, years, compounds_per_year, contribution), and ROI (/v1/roi: initial, final, ?years). Deterministic and instant. Distinct from finance-api (market data).",
        "source": "Local financial math — no key, no upstream",
        "endpoints": 5
    },
    "meta": {
        "timestamp": "2026-06-02T16:52:03.141Z",
        "request_id": "e88be9bc-91d1-4613-a0e8-13f820f30182"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}