মুক্ত ক্যালকুলেটৰ API
এই সাইটত থকা প্ৰতিটো গণক এক বিনামূলীয়া JSON API। কোনো নিবন্ধন, কোনো API কি', CORS-সক্ষম — আপোনাৰ সেৱক বা ব্ৰাউছাৰ থেকে সরাসৰি কল কৰক।
সৰলৰূপে
API-এ ৱেবছাইটৰ ব্যৱহাৰ কৰা একেই গণিত চলায়। গণক ক্ষেত্ৰৰ মানসমূহ প্ৰশ্ন প্ৰাচল বা JSON হিচাপে পঠাওক আৰু গণিত ফলাফলসমূহ JSON হিচাপে পুনৰ প্ৰাপ্ত কৰক - গণকে উৎপাদন কৰা যিকোনো আৱৰ্জনাৰ সময়সূচী বা চিত্ৰ তথ্য অন্তৰ্ভুক্ত কৰি।
- 198+ গণকসমূহ, প্ৰতিটো নিজস্ব অন্তবিন্দু সহ
- API কি' নাই — বেনামী অভিগম, IP দ্বাৰা হাৰ-সীমিত
- CORS —
Access-Control-Allow-Origin: *(ব্যৱহাৰযোগ্য ক্লায়েন্ট-পাৰ্শ্ব) - হাৰ সীমা: 60 প্ৰতি IP অনুৰোধ/ঘন্টা (HTTP 429 অতিক্ৰম কৰিলে)
- Errors are free — only a successful (2xx) response uses one call from your monthly quota. Every 400, 401, 404, 429 and 500 costs you nothing.
ভিত্তি URL
https://calculator.free/api/v1/
সূচী — প্ৰতিটো গণক তালিকাভুক্ত কৰক
GET https://calculator.free/api/v1/
সকলো গণকসমূহৰ এটা মেচিন-পঢ়িব পৰা তালিকা প্রত্যেকটো ক্ষেত্ৰৰ সৈতে (কি, লেবেল, ধৰণ, অবিকল্পিত, একক) আৰু ফলাফল কি'সমূহ - এটা ক্লাএন্টক গতিশীলভাৱে নিৰ্মাণ কৰিবলৈ যথেষ্ট Each field also carries a required flag — true for the few fields that have no default (dates, mostly). Send those: a couple of calculators can infer one, the rest answer 400 without it.
গণনা কৰক — এটা গণক চলাওক
GET https://calculator.free/api/v1/<slug>/?field=value&field=value
POST https://calculator.free/api/v1/<slug>/ (JSON or form body)
প্ৰতিক্ৰিয়া আকৃতি:
{
"ok": true,
"slug": "mortgage",
"country": "us",
"inputs": { ... the values actually computed with ... },
"results": { ... computed result keys ... },
"schedule": { "columns": [...], "rows": [...] } | null,
"chart": { "type": "pie", "slices": [...] } | null,
"defaults_applied": ["tax", "insurance"]
}
দেশ-সচেতন গণকসমূহ (ঋণ, ঋণ, আয়-টেক্স, বিক্রয়-টেক্স…) গ্ৰহণ কৰক ?country=us|uk|ca|au|in|ie|nz|za. অজ্ঞাত slug ৰ ফলাফল 404; অসমৰ্থিত দেশ বা ভুল ইনপুটৰ ফলাফল 400 সহায়ক বাৰ্তা আৰু ক্ষেত্ৰৰ বিৱৰণ সহ।
Parameters, defaults and errors
Send only the fields you care about. Anything you leave out is filled with that field's published default — the same value the calculator page pre-fills, so the API and the website always return the same numbers for the same inputs. Each response lists what it filled in under defaults_applied.
Anything the API cannot resolve honestly is an error, never a zero: a misspelled parameter, a value of the wrong type, an unknown dropdown option, or a missing field that has no default (the date fields — a birth date cannot be guessed). Every 400 names the offending parameter and echoes the full field spec so a client can correct itself.
$ curl "https://calculator.free/api/v1/mortgage/?price=350000&rate=6.5&term=30"
{
"ok": false,
"error": "unknown_parameter",
"message": "Unknown parameter 'term' for calculator 'mortgage'. Did you mean 'years'? ...",
"unknown_parameters": ["term"],
"did_you_mean": { "term": "years" },
"valid_parameters": ["down", "extra", "extra_onetime", "extra_yearly", "hoa",
"insurance", "other", "pmi", "price", "rate", "tax", "years"],
"fields": [ ... ]
}
| error | HTTP | When |
|---|---|---|
unknown_parameter | 400 | a parameter that is not a field of this calculator (with a did-you-mean suggestion) |
invalid_value | 400 | a number field that is not a number, a dropdown value outside its options, an unparseable date, or an unknown _mode |
missing_parameter | 400 | the calculator produced no result because a field with no default was left empty |
unsupported_country | 400 | ?country= is not one this calculator has data for |
bad_json | 400 | the POST body is not valid JSON |
unknown_calculator | 404 | no calculator with that slug |
invalid_key | 401 | an API key was sent but is unknown or inactive |
rate_limited / quota_exceeded | 429 | the anonymous hourly IP limit, or a key's monthly quota, is used up |
too_many_invalid_requests | 429 | too many rejected requests in one hour for this key — rejected calls are free, so they are rate-limited instead. Resets hourly; successful calls never count towards it. |
The /api/v1/ index publishes every field's key, type, unit, default and whether it is required — enough to build a client that never guesses.
প্ৰমাণীকৰণ আৰু পৰিকল্পনাসমূহ
আপুনি API-ক কোনো কি' নোহোৱাকে কল কৰিব পাৰে - বেনামী অনুৰোধ IP দ্বাৰা হাৰ-সীমিত কৰা হয়। উচ্চ, ভৱিষ্যদ্বাণীযোগ্য মাহেকীয়া কোটা (আৰু বাণিজ্যিক ব্যৱহাৰ) ৰ বাবে, আপোনাৰ একাওন্ট পৃষ্ঠাত এটা কি' সৃষ্টি কৰক আৰু ইয়াক তিনিটা পথৰ এটাত প্ৰেৰণ কৰক:
GET https://calculator.free/api/v1/mortgage/?price=350000&key=YOUR_KEY
curl -H "Authorization: Bearer YOUR_KEY" "https://calculator.free/api/v1/bmi/?units=metric&height=180&weight=80"
curl -H "X-Api-Key: YOUR_KEY" "https://calculator.free/api/v1/bmi/?units=metric&height=180&weight=80"
- মুক্ত — বেনামী (IP হাৰ-সীমিত) অথবা এটা মুক্ত কি' যি মাহেকে এটা সৰু কোটাৰে আছে। অ-বাণিজ্যিক।
- বিকাশক — $9/mo — ১০,০০০ কল/মাহ, বাণিজ্যিক ব্যৱহাৰ।
- ব্যৱসা — $49/মাহ — ১০০,০০০ কল/মাহ, অগ্ৰাধিকাৰ ভিত্তিত
What counts against your quota
Only a successful response does. One 2xx = one call. Every error is free: a 400 for a misspelled parameter, a bad value or a missing required field, a 404 for an unknown slug, a 401 for a bad key, a 429, and anything that goes wrong on our side. Explore the contract and fix your request as many times as you need — you are billed for answers, not for corrections.
Because errors are free they are rate-limited instead: if one key provokes more than 200 rejected responses in an hour, it gets HTTP 429 "too_many_invalid_requests" until the hour rolls over. Successful calls never count towards that, so a working integration will never see it — it only catches a client stuck in a retry loop.
কি'ৰ মাহেকীয়া কোটা ব্যৱহাৰ কৰা হ'লে API দ্বাৰা HTTP 429 আৰু ত্ৰুটি "quota_exceeded" প্ৰদৰ্শিত হ'ব; অজ্ঞাত বা নিষ্ক্ৰিয় কি'ৰ দ্বাৰা HTTP 401 প্ৰদৰ্শিত হ'ব। সম্পূৰ্ণ পৰিকল্পনা চাওক আৰু এইটোত যোগদান কৰক মূল্য পৃষ্ঠা.
উদাহৰণসমূহ
curl
curl "https://calculator.free/api/v1/mortgage/?price=350000&down=70000&rate=6.9&years=30"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/bmi/?" + new URLSearchParams({
units: "metric", height: "180", weight: "80"
}));
const { results } = await r.json();
console.log(results.bmi, results.category);
Python
import requests
r = requests.get("https://calculator.free/api/v1/mortgage/",
params={"price": 350000, "down": 70000,
"rate": 6.9, "years": 30},
headers={"Authorization": "Bearer YOUR_KEY"})
print(r.json()["results"])
POST JSON
curl -X POST "https://calculator.free/api/v1/income-tax/?country=uk" \
-H "Content-Type: application/json" \
-d '{"income": 60000}'
সকলো অন্তিম বিন্দু
প্ৰতিটো ক্যালকুলেটৰত এটা শেষ বিন্দু। প্ৰতিটো ক্ষেত্ৰৰ কি' আৰু ফলন কি'ৰ বাবে এইটোত আছে /api/v1/ সূচী.
আৰ্থিক (41)
কৰ আৰু বেতন (2)
| গণক | অন্তিম বিন্দু |
|---|---|
| আয়কৰ গণনাকাৰী | /api/v1/income-tax/ |
| বিক্রয় কৰ আৰু VAT গণক | /api/v1/sales-tax/ |
স্বাস্থ্য আৰু ফিটনেস (28)
ধৰণ (26)
পৰিসংখ্যান (15)
একক পৰিবৰ্তনকাৰী (17)
বিজ্ঞান আৰু প্ৰকৌশল (27)
তাৰিখ আৰু সময় (15)
প্ৰতিদিন (27)
এই তথ্যসমূহ কেৱল সাধাৰণ দিশ নিৰ্দেশৰ বাবে, আৰ্থিক, চিকিৎসা বা কৰৰ পৰামৰ্শৰ বাবে নহয়।