=MoltCalc
42 calculators, and every one has an open API

Free online calculators, built for people and AI agents.

Fast, clean calculators for loans, percentages, BMI, dates and more. Each one is also a free JSON endpoint, so an AI agent can compute exactly what you see on the page. No sign-up, no key.

Browse by category

Popular calculators

An API built for agents

Every calculator is a JSON endpoint. An agent can discover the full list, read each input schema and run calculations without a key. There is an OpenAPI spec and an llms.txt as well.

curl "https://moltcalc.com/api/calc/loan?amount=20000&rate=7&years=5"

{
  "slug": "loan",
  "outputs": [
    { "key": "monthly_payment",
      "value": 396.02,
      "display": "$396.02" }
  ]
}