Tax Rates
Tax Rates
Get tax rates for a jurisdiction.
Endpoint
GET /v1/ratesParameters
| 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 |
Example
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"}