🇺🇸 Vereinigte Staaten2026
API
Offizielle Daten 2026 • Echtzeitberechnungen
← Startseite
API-Dokumentation
ReCalcul stellt alle Rechner als REST-APIs bereit. Senden Sie JSON-Eingaben per POST und erhalten Sie strukturierte Ergebnisse mit Aufschlüsselungen, Annahmen und Quellenangaben. Ideal für LLMs, Agenten und programmatische Nutzung.
Schnellstart
Beispiel mit curl
curl -X POST https://recalcul.com/api/calc/salary \
-H "Content-Type: application/json" \
-d '{"grossSalary": 60000, "filingStatus": "single", "period": "monthly"}'Beispiel mit fetch
const res = await fetch('https://recalcul.com/api/calc/bmi', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ weight: 70, height: 175, unit: 'metric' })
});
const data = await res.json();
console.log(data.result);Verfügbare Endpoints
POST to /api/calc/{slug} with JSON body. GET /api/calc/{slug}/schema for input/output schema.
age-calculator—Age Calculatorschemabmi—BMI & BMR Calculatorschemabreak-even—Break-even Calculatorschemacalories—Calorie & TDEE Calculatorschemacompound-interest—Compound Interest Calculatorschemaconverter—Smart Converterschemadate-calculator—Date Calculatorschemadividend—Dividend Tax Calculatorschemaemployer-cost—Employer Cost Calculatorschemafreelance-tax—Freelance Tax Simulatorschemahourly-to-salary—Hourly to Salary Calculatorschemahydration—Hydration Calculatorschemainflation—Inflation Trackerschemaloan—Loan Calculatorschemamileage—Mileage Indemnityschemamortgage—Mortgage Calculatorschemapercentage—Percentage Calculatorschemapregnancy—Pregnancy Due Dateschemaretirement—Retirement Simulatorschemasalary—Salary Calculatorschemasalary-comparison—Salary Comparisonschematip—Tip Calculatorschematjm—Daily Rate Calculatorschemavat—VAT Calculatorschema
Resources
- OpenAPI-Spezifikation
Vollständige OpenAPI-3.1-Spezifikation für alle Rechner.
- LLM-Anweisungen
Maschinenlesbare Dokumentation für KI-Agenten.
- Methodik
Formeln und Datenquellen.