/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}