zakat Calculation Endpoint

POST/api/v1/calculate/zakat

Request Parameters (JSON)

cash (number, optional)

Cash and savings in USD.

gold (number, optional)

Gold value in USD.

silver (number, optional)

Silver value in USD.

business (number, optional)

Business inventory value in USD.

debts (number, optional)

Debts to be deducted.

Live Try-out Console

curl -X POST "https://smartcalctools.xyz/api/v1/calculate/zakat" \
  -H "Content-Type: application/json" \
  -d '{
  "cash": 5000,
  "gold": 120,
  "silver": 0,
  "business": 0,
  "debts": 1000,
  "goldPrice": 75
}'
HTTP RESPONSE
// Click 'Send Live Request' to see response output here...