For the complete documentation index, see llms.txt.
Ready-made JSON tools for products, content sites, and agents

Add calculators
without rebuilding them.

Ship calculator, converter, text, hash, random, and finance features without maintaining formulas, validation, edge cases, examples, and docs yourself. One bearer token, one credit pool, stable JSON responses.

Hosted formulas Typed schemas Copy-paste examples Agent-ready
Proven on miniwebtool.com since 2010 — real tools people already search for and use
LIVE
$ curl https://api.miniwebtool.com/v1/tools/percentage-calculator/run \
    -H "Authorization: Bearer $MWT_KEY" \
    -d '{"mode":"percent_of","a":15,"b":200}'

{
  "request_id":   "01KPW8…",
  "tool":         "percentage-calculator",
  "credits_used": 1,
  "result": {
    "mode":   "percent_of",
    "a":      15,
    "b":      200,
    "result": 30
  }
}
import requests, os

r = requests.post(
    "https://api.miniwebtool.com/v1/tools/percentage-calculator/run",
    headers={"Authorization": f"Bearer {os.environ['MWT_KEY']}"},
    json={"mode": "percent_of", "a": 15, "b": 200},
    timeout=10,
)
print(r.json()["result"]["result"])  # 30
const res = await fetch(
  "https://api.miniwebtool.com/v1/tools/percentage-calculator/run",
  {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.MWT_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({ mode: "percent_of", a: 15, b: 200 }),
  },
);
const { result } = await res.json();
console.log(result.result);  // 30
Start free · no card
Paid plans start at $29/mo when you need production volume
🔒
400 endpoints
Growing curated catalog
💳
One API key
Same auth across every tool
Fixed credits
Predictable cost per call
Finance calculators · Text utilities · Math formulas · Hash & checksum · Random, conversion, and webmaster tools
Fair-use: scraping & cloning blocked. Commercial use starts on paid plans.
🧰
SaaS teams
Add calculators to product workflows
💰
Financial sites
Interest, mortgage, APY, ROI
🎓
Education apps
Practice, quizzes, explanations
🤖
Automation & agents
Reliable tool calls with JSON schemas
Browse endpoints →

Why buy an API for tools that look simple?

A calculator is rarely just a formula. Production teams still need request validation, edge-case handling, consistent rounding, examples, docs, rate limits, billing, and support. MiniWebtool API packages that operational work behind a single HTTP call.

Ship faster
Use an endpoint instead of building and documenting a tool from scratch.
Stay consistent
One JSON envelope, one auth model, one monthly credit pool.
Rank-ready docs
Each tool page includes schema, examples, pricing, FAQ, and related endpoints.

Best-fit use cases

  • Product teams adding calculators to dashboards, forms, or onboarding flows.
  • Finance, education, and content sites that need reliable utility endpoints.
  • Agencies and automation builders who want many small tools under one account.
  • AI agents that need exact tool execution after planning in natural language.
Browse all endpoints → Read docs

Pricing

Start free for evaluation, then upgrade when an endpoint becomes part of your product. Cancel anytime from the Stripe portal.

Free

Free
1,000 credits/mo
1 req/sec
Hard cap
Testing and prototypes
Core text, hash, math, date, and conversion tools
Start free

Starter

$29/mo
75,000 credits/mo
5 req/sec
Hard cap + manual packs
Indie apps and automations
Core plus basic finance
Start Starter
POPULAR

Pro

$79/mo
400,000 credits/mo
15 req/sec
Hard cap default; optional $0.25 / 1K credits
Production SaaS and content workflows
Core, finance, text, random, and webmaster light
Start Pro

Business

$199/mo
1,500,000 credits/mo
50 req/sec
Hard cap default; optional $0.15 / 1K credits
Teams and production apps
All sync APIs, logs, invoices, team controls
Start Business

Scale

$499/mo
5,000,000 credits/mo
100 req/sec
Hard cap default; optional $0.10 / 1K credits
High throughput and batch usage
Higher limits, priority queue, crawler add-ons later
Start Scale

Yearly billing: pay 10 months, get 12. Need >5M/mo, SOC 2, or a DPA? Talk to us.

Your first curl in 30 seconds.

Verify email → key → stable JSON. No card, no SDK, no tool build-out.

Get API access →