▫️VAT Calculator

/vat

This endpoint calculates the VAT (Value Added Tax) amount and total price based on the provided price and VAT rate. It returns the original price, VAT rate, calculated VAT amount, and total price. If any of the parameters are missing, not numbers, or the VAT rate is negative, it returns a 400 error with a corresponding message.

Query Parameters

ParameterTypeDescription

price

number

The price of the product or service.

vatRate

number

The VAT rate in percentage to be applied to the price.

Response

{
  "originalPrice": "number",
  "vatRate": "string",
  "vatAmount": "number",
  "totalPrice": "number"
}

Last updated