Skip to content

Tax Rates

Tax Rates

Get tax rates for a jurisdiction.

Endpoint

GET /v1/rates

Parameters

ParameterTypeRequiredDescription
jurisdictionstringYesISO code (DE, US-CA, CA-ON)
datestringNoEffective date (YYYY-MM-DD)
typestringNoFilter by tax type

Example

Terminal window
curl "https://api.shipvat.com/v1/rates?jurisdiction=DE" \
-H "Authorization: Bearer sk_your_api_key"

Response

{
"jurisdiction": "DE",
"jurisdiction_name": "Germany",
"has_tax": true,
"rates": [{
"tax_type": "VAT",
"category": "STANDARD",
"rate": 19,
"effective_from": "2020-01-01",
"effective_to": null,
"provenance": {
"source_name": "EU TEDB",
"source_url": "https://ec.europa.eu/taxation_customs/tedb/",
"refreshed_at": "2024-01-15T02:00:00Z",
"status": "VERIFIED"
}
}],
"queried_at": "2024-01-15T10:30:00Z"
}