Skip to content

Tax Rates

Get tax rates for a jurisdiction.

GET /v1/rates
Parameter Type Required Description
jurisdiction string Yes ISO code (DE, US-CA, CA-ON)
date string No Effective date (YYYY-MM-DD)
type string No Filter by tax type
Terminal window
curl "https://api.shipvat.com/v1/rates?jurisdiction=DE" \
-H "Authorization: Bearer sk_your_api_key"
{
"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"
}