43 tools, 63 API functions

Finance tools your app doesn't have to build

40+ finance calculators via REST API and MCP. Mortgage payments, tax calculations, investment projections, currency conversion. Tested formulas, not LLM approximations.

What you get

Mortgage, amortization, and loan calculations with exact formulas
Income tax for 7 countries (US, UK, DE, FR, ES, BR, JP)
Currency conversion with live ECB rates (4-hour cache)
Investment tools: NPV, IRR, CAGR, FIRE, dividend reinvestment
VAT calculation for 30 EU/EEA countries

Try it now

Copy any example. No signup needed for the first 50 calls/day.

cURL - Monthly mortgage payment
curl -X POST https://toolknife.com/api/v1/tools/mortgage-calculator_monthly-payment \
  -H "Content-Type: application/json" \
  -d '{"principal": 360000, "annualRate": 6.5, "years": 30}'

# Response:
# { "monthlyPayment": 2275.44, "totalInterest": 459158.40, "totalCost": 819158.40 }
Python - Investment portfolio analysis
import requests

BASE = "https://toolknife.com/api/v1/tools"

# NPV of a project
npv = requests.post(f"{BASE}/npv-calculator_calculate", json={
    "rate": 10,
    "initialInvestment": 100000,
    "cashFlows": [30000, 35000, 40000, 45000, 50000],
}).json()["result"]

# Compound interest projection
growth = requests.post(f"{BASE}/compound-interest-calculator_calculate", json={
    "principal": 10000,
    "rate": 7,
    "time": 20,
    "compoundingFrequency": 12,
}).json()["result"]

print(f"NPV: ${npv['npv']:,.2f}")
print(f"Future value: ${growth['futureValue']:,.2f}")
JavaScript - Currency conversion
const res = await fetch(
  "https://toolknife.com/api/v1/tools/currency-converter_convert",
  {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({ amount: 1000, from: "USD", to: "EUR" }),
  }
);

const { result } = await res.json();
console.log(`${result.amount} ${result.from} = ${result.converted} ${result.to}`);
// Rate from ECB, updated every 4 hours

Who uses this

Fintech startups, financial advisors, real estate platforms

Real estate platforms

Add mortgage calculators, affordability checks, and closing cost estimates to property listings.

Financial advisors

Power retirement projections, investment analysis, and tax planning tools in client portals.

Fintech apps

Embed loan comparisons, compound interest projections, and currency conversion into your product.

Featured tools

Pricing

Same API, same MCP. Pick the limit that fits.

Free

$0 forever

  • 50 calls/day (no signup)
  • 200 calls/day (free account)
  • All 43+ tools in this vertical
Most popular

Pro

$19/mo

  • 5,000 calls/day
  • API key authentication
  • Authenticated MCP access
Start free trial

Business

$99/mo

  • 25,000 calls/day + overage
  • Team API keys (up to 5)
  • Priority support
Get started

Ready to integrate?

Step-by-step guides for Claude Desktop, Cursor, Python, JavaScript, Next.js, and WordPress.