🇺🇸 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-calculatorAge Calculatorschema
  • bmiBMI & BMR Calculatorschema
  • break-evenBreak-even Calculatorschema
  • caloriesCalorie & TDEE Calculatorschema
  • compound-interestCompound Interest Calculatorschema
  • converterSmart Converterschema
  • date-calculatorDate Calculatorschema
  • dividendDividend Tax Calculatorschema
  • employer-costEmployer Cost Calculatorschema
  • freelance-taxFreelance Tax Simulatorschema
  • hourly-to-salaryHourly to Salary Calculatorschema
  • hydrationHydration Calculatorschema
  • inflationInflation Trackerschema
  • loanLoan Calculatorschema
  • mileageMileage Indemnityschema
  • mortgageMortgage Calculatorschema
  • percentagePercentage Calculatorschema
  • pregnancyPregnancy Due Dateschema
  • retirementRetirement Simulatorschema
  • salarySalary Calculatorschema
  • salary-comparisonSalary Comparisonschema
  • tipTip Calculatorschema
  • tjmDaily Rate Calculatorschema
  • vatVAT Calculatorschema

Resources