Data source: European Commission
https://context.gnist.ai/rest/vat-rates/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (6)
get_vat_ratelist_all_vat_ratessearch_vat_ratesget_highest_vat_ratesget_lowest_vat_ratesreport_feedback
get_vat_rateGet VAT rates for a specific European country.
Returns standard rate, reduced rates, super-reduced rate, and parking rate where applicable.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO alpha-2 country code (e.g. DE, FR, SE). |
{
"country_code": "NO"
}list_all_vat_ratesList VAT rates for all European countries.
Returns standard and reduced rates for all EU/EEA member states plus UK and Switzerland.
{
"query": "example"
}search_vat_ratesSearch VAT rates by country name.
Case-insensitive partial match on country name or code.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Country name to search for. |
limit | integer | optional | (default: 10) |
{
"query": "NO"
}get_highest_vat_ratesGet countries with the highest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
{
"query": "example"
}get_lowest_vat_ratesGet countries with the lowest standard VAT rates.
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
{
"query": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/vat-rates/get_vat_rate" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"country_code": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/vat-rates/get_vat_rate",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"country_code": "example"
},
)
print(resp.json())