Contract
{
"type": "object",
"required": [
"country_code"
],
"properties": {
"category": {
"type": "string",
"description": "standard/food/books/medicine/transport/digital"
},
"country_code": {
"type": "string"
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"currency": {
"type": "string",
"description": "The country's own currency code, e.g. 'EUR'. Unrelated to how this call itself is billed (always USD)."
},
"rate_note": {
"type": "string",
"description": "Short human-readable label for which rate was applied, e.g. 'Standard rate', 'Reduced rate for food'."
},
"country_code": {
"type": "string"
},
"country_name": {
"type": "string"
},
"parking_rate": {
"type": [
"number",
"null"
],
"description": "Percent. A transitional/parking rate some countries retain. Observed null (Germany, which has none) and 14 (Luxembourg)."
},
"reduced_rates": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rate": {
"type": "number",
"description": "Percent."
},
"categories": {
"type": "array",
"items": {
"type": "string"
},
"description": "Category names this reduced rate applies to, e.g. 'food', 'books'."
}
},
"additionalProperties": true
},
"description": "One entry per reduced rate the country defines; observed 1 entry (Germany) and 2 entries (Luxembourg)."
},
"standard_rate": {
"type": "number",
"description": "Percent, e.g. 19 for Germany."
},
"applicable_rate": {
"type": "number",
"description": "The single rate that applies to the requested `category` input (or the standard rate if no category was given). Percent."
},
"category_applied": {
"type": "string",
"description": "Echoes back which category the `applicable_rate` was resolved for."
},
"super_reduced_rate": {
"type": [
"number",
"null"
],
"description": "Percent. Observed null (Germany, which has none) and 3 (Luxembourg)."
},
"zero_rated_categories": {
"type": "array",
"items": {
"type": "string"
},
"description": "Category names taxed at 0%. Observed as an empty array on both fixtures captured; a country with zero-rated categories was not observed."
}
},
"description": "The VAT rate record, as returned at routing.responseResultPath ($.output).",
"additionalProperties": true
}Pricing
Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.
Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.0486486 |
- Cost basis
- Not recorded
This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.
- Updated
- Sep 23, 2026
