GET api/agency/getvatrate?vatRateType={vatRateType}&vatDate={vatDate}

Gets the current VAT rate unless the date is specified Processes this agency API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vatRateType

Vat Rate type, "standard" is currently option

string

Required

vatDate

Date of VAT value, used to get historic or future VAT Rates

date

None.

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

VatRateDataContract
NameDescriptionTypeAdditional information
VatRateType

The vat rate type value.

EnumDataContract

None.

VatRatePercentage

The vat rate percentage value.

decimal number

None.

ValidFrom

The valid from, expressed as a date and time.

date

None.

ValidTo

The valid to, expressed as a date and time.

date

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "VatRateType": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "VatRatePercentage": 1.1,
  "ValidFrom": "2026-08-05T00:26:16.0206279Z",
  "ValidTo": "2026-08-05T00:26:16.0206279Z",
  "Id": 4
}