Kultranz API: Free US Personal Finance Data & Calculators

The Kultranz API turns the data engine behind this site into clean JSON endpoints. Every number traces back to a real government source - no estimates, no scraping, no guesswork. It’s the same data that powers the calculators you’ve been using here, exposed for developers.

What you get

EndpointReturnsExample
GET /paycheckTake-home pay (fed + FICA + state)?salary=120000&state=CA&filingStatus=single
GET /cost-of-livingEquivalent salary between two metros?fromCity=Austin, TX&toCity=San Francisco, CA&salary=100000
GET /tax-bracketsFederal + state brackets as JSON?state=NY&filingStatus=mfj
GET /col-index50-metro RPP table?city=Albuquerque, NM
GET /compound-interestFuture value + yearly series?principal=10000&monthly=500&rate=7&years=20
GET /net-worthAssets, liabilities, net worth?cash=10000&investments=50000
GET /debt-payoffAvalanche / snowball schedule?debts=[{...}]&extra=200&mode=avalanche
GET /budget50/30/20 split?income=5000
GET /salariesReal BLS wage percentiles by job x city?job=nurse&city=Chicago

Base URL

https://api.kultranz.com

All requests must go through RapidAPI, which injects the X-RapidAPI-Host and X-RapidAPI-Key headers on every call. Grab a free key on RapidAPI to start testing - the free tier gives 100 requests/day, no credit card.

Examples

Substitute YOUR_RAPIDAPI_KEY with your own key from RapidAPI.

Take-home pay

curl "https://kultranz.p.rapidapi.com/paycheck?salary=120000&state=CA&filingStatus=single" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: kultranz.p.rapidapi.com"

Cost of living

curl "https://kultranz.p.rapidapi.com/cost-of-living?fromCity=Austin,%20TX&toCity=San%20Francisco,%20CA&salary=100000" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: kultranz.p.rapidapi.com"

Salary data

curl "https://kultranz.p.rapidapi.com/salaries?job=nurse&city=Chicago" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: kultranz.p.rapidapi.com"

Response format

Every response uses a uniform envelope:

{
  "data": { },
  "meta": {
    "source": "BLS OEWS + BEA RPP + U.S. Census ACS + IRS (via kultranz.com)",
    "vintage": "2026",
    "year": 2026
  }
}

Errors return { "error": { "code": "...", "message": "..." } } with the appropriate HTTP status.

Pricing

TierPriceQuota
BasicFree100 requests/day
Pro$10/mo10,000 req/mo, then ~$0.002/req
Ultra$49/mo150,000 req/mo
Mega$199/mo1,000,000 req/mo

Billing, API keys, and rate-limiting are managed by RapidAPI - we never see your payment details.

Data sources & vintage

  • Wages: BLS Occupational Employment and Wage Statistics (OEWS) - 20 occupations x 50 metros, with 10th/25th/median/75th/90th percentiles.
  • Cost of living: BEA Regional Price Parities (RPP), US average = 100.
  • Housing & income: U.S. Census American Community Survey (ACS) 5-year estimates.
  • Tax brackets: IRS 2026 - federal standard deduction, brackets, FICA Social Security wage base ($184,500), Medicare + additional Medicare.

Full details on our methodology page.

Try it

The same calculators on this site call these endpoints under the hood. Run the paycheck calculator, the cost-of-living tool, or browse salaries by job to see the data in action - then grab a RapidAPI key when you’re ready to build with it.