મુક્ત ગણકયંત્ર API

આ સાઇટ પર દરેક ગણકયંત્ર મુક્ત JSON API પણ છે. નોંધણી નથી, API કી નથી, CORS-સક્રિય — તમારા સર્વરમાંથી અથવા બ્રાઉઝરમાંથી સીધા તેને બોલાવો.

સમીક્ષા

API એ વેબસાઇટ વાપરે છે તે જ ગણિત ચલાવે છે. કેલ્ક્યુલેટરના ક્ષેત્રની કિંમતોને પ્રશ્ન પરિમાણો અથવા JSON તરીકે મોકલો અને ગણિતીય પરિણામોને JSON તરીકે પાછા મેળવો - કોઈપણ અધિગ્રહણ સમયગાળો અથવા આલેખ માહિતી કેલ્ક્યુલેટર ઉત્પન્ન કરે છે તે સમાવીને.

  • 198+ ગણકયંત્રો, દરેક તેની પોતાની અંતબિંદુ સાથે
  • API કી નથી — અનામિક પ્રવેશ, IP દ્દારા દર-સીમિત
  • CORSAccess-Control-Allow-Origin: * (વપરાશકર્તા-બાજુ વાપરી શકાય તેવું ક્લાયન્ટ)
  • દર મર્યાદા: 60 IP પ્રતિ વિનંતી/કલાક (HTTP ૪૨૯ જ્યારે વધે છે)

આધાર URL

https://calculator.free/api/v1/

અનુક્રમણિકા — દરેક ગણકયંત્રની યાદી

GET https://calculator.free/api/v1/

દરેક ક્ષેત્રો (કી, લેબલ, પ્રકાર, મૂળભૂત, એકમ) અને પરિણામ કીઓ સાથે બધા ગણકયંત્રોની મશીન-વાંચી શકાય તેવી યાદી પાછી આપે છે - ક્લાયન્ટને ઝડપથી બનાવવા માટે પૂરતી.

ગણો — એક કેલ્ક્યુલેટર ચલાવો

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":   { ... echoed field values ... },
  "results":  { ... computed result keys ... },
  "schedule": { "columns": [...], "rows": [...] } | null,
  "chart":    { "type": "pie", "slices": [...] } | null
}

દેશ-જાગૃત ગણકયંત્રો (મકાન, લોન, આવક-વેરો, વેચાણ-વેરો...) સ્વીકારે છે ?country=us|uk|ca|au|in|ie|nz|za. અજ્ઞાત slug 404 પાછું આપે છે; બિનઆધારભૂત દેશ અથવા ખરાબ ઇનપુટ મદદરૂપ સંદેશા અને ક્ષેત્ર સ્પષ્ટીકરણ સાથે 400 પાછું આપે છે.

સત્તાધિકરણ અને યોજનાઓ

તમે ક્યાંતો કીને વગર 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 દર-સીમિત) અથવા નાની માસિક કોટા સાથે મુક્ત કી. બિન-વ્યાપારિક.
  • ડેવલોપર &mdash; $9/મહિના — 10,000 કોલ/મહિના, વાણિજ્યિક ઉપયોગ
  • વ્યવસાય &mdash; $49/મહિના — 100,000 કોલ/મહિના, પ્રાથમિકતા ટર્નઓવર

જ્યારે કીનું માસિક કોટા વપરાયું હોય ત્યારે 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);

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)
ગણકયંત્રઅંતિમબિંદુ
મોર્ટગેજ ગણકયંત્ર /api/v1/mortgage/
લોન ગણકયંત્ર /api/v1/loan/
કોમ્પોનન્ટ વ્યાજ ગણકયંત્ર /api/v1/compound-interest/
સરળ વ્યાજ ગણકયંત્ર /api/v1/simple-interest/
ક્રેડિટ કાર્ડ પેઇઓફ ગણકયંત્ર /api/v1/credit-card-payoff/
ઈંધણ ખર્ચ ગણકયંત્ર /api/v1/fuel-cost/
આપોઆપ લોન ગણકયંત્ર /api/v1/auto-loan/
નિવૃત્તિ ગણકયંત્ર /api/v1/retirement/
બચત લક્ષ્ય ગણકયંત્ર /api/v1/savings-goal/
નફો હાંસિયા ગણકયંત્ર /api/v1/margin/
ભવિષ્યની કિંમત ગણકયંત્ર /api/v1/future-value/
વર્તમાન કિંમત ગણકયંત્ર /api/v1/present-value/
ROI ગણકયંત્ર /api/v1/roi/
યજમાન પેમેન્ટ ગણકયંત્ર /api/v1/annuity-payout/
APR થી APY ગણકયંત્ર /api/v1/apr-to-apy/
CD ગણકયંત્ર /api/v1/cd/
ઇન્ફ્લેશન ગણકયંત્ર /api/v1/inflation/
ઘરની ઉપલબ્ધતા ગણકયંત્ર /api/v1/home-affordability/
ભાડાની ઉપલબ્ધતા ગણકયંત્ર /api/v1/rent-affordability/
ડાઉન પેમેન્ટ ગણકયંત્ર /api/v1/down-payment/
ફરીથી ખર્ચ ગણકયંત્ર /api/v1/refinance/
દેવું-થી-આવક દર ગણકયંત્ર /api/v1/debt-to-income/
બોટ લોન ગણકયંત્ર /api/v1/boat-loan/
વિદ્યાર્થી લોન ગણકયંત્ર /api/v1/student-loan/
વ્યક્તિગત લોન ગણકયંત્ર /api/v1/personal-loan/
કાર લીઝ ગણકયંત્ર /api/v1/lease/
નેટ વર્થ ગણકયંત્ર /api/v1/net-worth/
બ્રેક-ઇવેન પોઇન્ટ ગણકયંત્ર /api/v1/break-even/
SIP ગણકયંત્ર /api/v1/sip/
EMI ગણકયંત્ર /api/v1/emi/
401(k) ગણકયંત્ર /api/v1/401k/
રોથ IRA ગણકયંત્ર /api/v1/roth-ira/
પારંપરિક IRA ગણકયંત્ર /api/v1/ira/
બજેટ ગણકયંત્ર (50/30/20) /api/v1/budget/
સામાજિક સુરક્ષા ગણકયંત્ર /api/v1/social-security/
દેવું ચૂકવણી ગણકયંત્ર /api/v1/debt-payoff/
ભાડે અને ખરીદી ગણકયંત્ર /api/v1/rent-vs-buy/
મોર્ટગેજ પેઇઓફ ગણકયંત્ર /api/v1/mortgage-payoff/
APR ગણકયંત્ર /api/v1/apr/
ડેપ્રેસીઅન ગણકયંત્ર /api/v1/depreciation/
GDP ગણકયંત્ર /api/v1/gdp/
કર અને પગાર (2)
સ્વાસ્થ્ય અને યોગ્યતા (28)
ગણકયંત્રઅંતિમબિંદુ
BMI ગણકયંત્ર /api/v1/bmi/
કેલરી (TDEE) ગણકયંત્ર /api/v1/tdee/
શરીરના વજનનું ગણકયંત્ર /api/v1/body-fat/
આદર્શ વજન ગણકયંત્ર /api/v1/ideal-weight/
પાણીનો ઉપયોગ ગણકયંત્ર /api/v1/water-intake/
BMR ગણકયંત્ર /api/v1/bmr/
ચાલતી ગતિ ગણકયંત્ર /api/v1/running-pace/
મેક્રો ગણકયંત્ર /api/v1/macro/
કેલરી ખામી ગણકયંત્ર /api/v1/calorie-deficit/
પ્રોટીન ઇન્ટેક ગણકયંત્ર /api/v1/protein-intake/
એક Rep મહત્તમ ગણકયંત્ર /api/v1/one-rep-max/
મહત્તમ હૃદય દર ગણકયંત્ર /api/v1/max-heart-rate/
હૃદય દર વિસ્તાર ગણકયંત્ર /api/v1/heart-rate-zones/
લોહીના આલ્કોહોલ (BAC) ગણકયંત્ર /api/v1/bac/
ગર્ભાવસ્થાની તારીખ ગણકયંત્ર /api/v1/pregnancy-due-date/
ઓવલ્યુશન અને ઉત્પાદન કૅલ્ક્યુલેટર /api/v1/ovulation/
વાઇસ્ટ-ટુ-હિપ રેશિયો ગણકયંત્ર /api/v1/waist-to-hip-ratio/
વાઇસ્ટ-ટુ-હાઇટ રેશિયો ગણકયંત્ર /api/v1/waist-to-height-ratio/
લીન બોડી માસ ગણકયંત્ર /api/v1/lean-body-mass/
સેના શરીર ચરબી ગણકયંત્ર /api/v1/army-body-fat/
કેલરી બળેલા ગણકયંત્ર /api/v1/calories-burned/
પગલાંઓથી માઇલ્સ ગણકયંત્ર /api/v1/steps-to-miles/
સ્લેપ ચક્ર ગણકયંત્ર /api/v1/sleep/
શરીરની સપાટીનો વિસ્તાર ગણકયંત્ર /api/v1/body-surface-area/
સમયગાળા ગણકયંત્ર /api/v1/period/
સંકલ્પ તારીખ ગણકયંત્ર /api/v1/conception/
ગર્ભાવસ્થા વજન વધારો ગણકયંત્ર /api/v1/pregnancy-weight-gain/
GFR ગણકયંત્ર (eGFR, CKD-EPI) /api/v1/gfr/
પ્રકાર (26)
ગણકયંત્રઅંતિમબિંદુ
ટકા ગણકયંત્ર /api/v1/percentage/
સરેરાશ (સરેરાશ) ગણકયંત્ર /api/v1/average/
ટકા બદલો ગણકયંત્ર /api/v1/percentage-change/
રેશિયો ગણકયંત્ર /api/v1/ratio/
ભેગું ગણકયંત્ર /api/v1/fraction/
અપૂર્ણાંક ટકા ગણકયંત્ર /api/v1/fraction-to-percent/
મિશ્રિત સંખ્યાને અયોગ્ય ભેદ ગણકયંત્રમાં /api/v1/mixed-number/
ક્ષતિ (શક્તિ) ગણકયંત્ર /api/v1/exponent/
Nth રુટ ગણકયંત્ર /api/v1/root/
વર્ગ મૂળ ગણકયંત્ર /api/v1/square-root/
લોગરિટમ ગણકયંત્ર /api/v1/logarithm/
GCD & LCM ગણકયંત્ર /api/v1/gcd-lcm/
પ્રાથમિક ઘટક ગણકયંત્ર /api/v1/prime-factorization/
ફેક્ટોરીઅલ ગણકયંત્ર /api/v1/factorial/
પરમ્યુટેશન ગણકયંત્ર (nPr) /api/v1/permutation/
સંયોજક ગણકયંત્ર (nCr) /api/v1/combination/
ચોરસ સમીકરણ ગણકયંત્ર /api/v1/quadratic-formula/
સ્લોટ ગણકયંત્ર /api/v1/slope/
બે બિંદુઓ વચ્ચેની દૂરતા ગણકયંત્ર /api/v1/distance-two-points/
મધ્યબિંદુ ગણકયંત્ર /api/v1/midpoint/
પાયથાગોરસ પ્રમેય ગણકયંત્ર /api/v1/pythagorean-theorem/
વિસ્તાર ગણકયંત્ર /api/v1/area-of-a-shape/
વક્ર ગણકયંત્ર /api/v1/circle/
અવાજ ગણકયંત્ર /api/v1/volume-of-a-shape/
વૈજ્ઞાનિક નોટેશન રૂપાંતરકName /api/v1/scientific-notation/
ગોળ ગણકયંત્ર /api/v1/rounding/
આંકડાઓ (15)
એકમ ફેરબદલીકારો (17)
વિજ્ઞાન અને એન્જિનીયરીંગ (27)
ગણકયંત્રઅંતિમબિંદુ
ઓમનો કાયદો ગણકયંત્ર /api/v1/ohms-law/
વોલ્ટેજ ઘટાડો ગણકયંત્ર /api/v1/voltage-drop/
રેઝિસ્ટર રંગ કોડ ગણકયંત્ર /api/v1/resistor-color-code/
કન્વેક્ટર ચાર્જ ગણકયંત્ર /api/v1/capacitor-charge/
વીજળી પાવર ગણકયંત્ર /api/v1/electrical-power/
શક્તિ ગણકયંત્ર (F = ma) /api/v1/force/
કીનેટિક એનર્જી ગણકયંત્ર /api/v1/kinetic-energy/
સંભવિત ઉર્જા ગણકયંત્ર /api/v1/potential-energy/
ઘનતા ગણકયંત્ર /api/v1/density/
મોલારિટી ગણકયંત્ર /api/v1/molarity/
આદર્શ ગેસ કાયદો ગણકયંત્ર /api/v1/ideal-gas-law/
તરંગલંબાઈ અને આચરણ ગણકયંત્રName /api/v1/wavelength-frequency/
pH ગણકયંત્ર /api/v1/ph/
ટૉર્ક ગણકયંત્ર /api/v1/torque/
ગિયર રેશિયો ગણકયંત્ર /api/v1/gear-ratio/
પ્રોજેક્ટિલ ગતિ ગણકયંત્ર /api/v1/projectile-motion/
ઉપનેટ ગણકયંત્ર (IPv4 CIDR) /api/v1/subnet/
બાઇનરી / હેક્સ / દશાંશ રૂપાંતરક /api/v1/binary-hex/
BTU ગણકયંત્ર (AC & હીટિંગ) Name /api/v1/btu/
અડધી-જીવન ગણકયંત્ર /api/v1/half-life/
મોલ્યુલર વજન ગણકયંત્ર /api/v1/molecular-weight/
વીજળી ખર્ચ ગણકયંત્ર /api/v1/electricity/
પવન ઠંડક ગણકયંત્ર /api/v1/wind-chill/
ગરમી અનુક્રમણિકા ગણકયંત્ર /api/v1/heat-index/
ડેવ પોઇન્ટ ગણકયંત્ર /api/v1/dew-point/
બેન્ડવિથ / ડાઉનલોડ સમય ગણકયંત્ર /api/v1/bandwidth/
ઘોડાશક્તિ ગણકયંત્ર /api/v1/horsepower/
તારીખ અને સમય (15)
દરરોજ (27)
ગણકયંત્રઅંતિમબિંદુ
ટીપ ગણકયંત્ર /api/v1/tip/
છૂટ ગણકયંત્ર /api/v1/discount/
પગારથી કલાક ગણકયંત્ર /api/v1/salary/
અંતિમ ગુણ ગણકયંત્ર /api/v1/final-grade/
ગણકયંત્ર /api/v1/gpa/
ગુણોત્તર ગણકયંત્ર /api/v1/grade/
ચકાસણી સ્કોર ગણકયંત્ર /api/v1/test-score/
અક્ષર ગુણવત્તા ગણકયંત્ર /api/v1/letter-grade/
આસ્પેક્ટ રેશિયો ગણકયંત્ર /api/v1/aspect-ratio/
એકમ કિંમત ગણકયંત્ર /api/v1/unit-price/
વેચાણ કમિશન ગણકયંત્ર /api/v1/sales-commission/
રેન્ડમ નંબર ઉત્પન્નકર્તા /api/v1/random-number/
ડાયાસ રોલર /api/v1/dice-roller/
કોઇન ફ્લોપ /api/v1/coin-flip/
રેસિપી સ્કેલેર /api/v1/cooking-converter/
પેઇન્ટ ગણકયંત્ર /api/v1/paint/
તકતી ગણકયંત્ર /api/v1/tile/
મલ્ચ અને જમીન ગણકયંત્ર /api/v1/mulch/
કોન્ક્રીટ ગણકયંત્ર /api/v1/concrete/
ચોરસ ફૂટેજ ગણકયંત્ર /api/v1/square-footage/
ગ્રેવલ ગણકયંત્ર /api/v1/gravel/
છત ગણકયંત્ર /api/v1/roofing/
સ્ટેપલ ગણકયંત્ર /api/v1/stair/
ટાયર માપ ગણકયંત્ર /api/v1/tire-size/
ગોલ્ફ હેન્ડિકપ ગણકયંત્ર /api/v1/golf-handicap/
[Translation temporarily unavailable. Please try again.] /api/v1/love/
બ્રા માપ ગણકયંત્ર /api/v1/bra-size/

પરિણામો સામાન્ય માર્ગદર્શન માટે જ અંદાજિત છે, નાણાકીય, તબીબી અથવા કરવેરા સલાહ માટે નહીં.