List firm VAT rates
curl --request GET \
--url https://api.contazen.ro/v1/vat-rates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.contazen.ro/v1/vat-rates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.contazen.ro/v1/vat-rates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.contazen.ro/v1/vat-rates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.contazen.ro/v1/vat-rates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.contazen.ro/v1/vat-rates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.contazen.ro/v1/vat-rates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"object": "list",
"data": [
{
"id": "<string>",
"percent": 19,
"description": "19% - TVA",
"is_used": true,
"can_be_deleted": true,
"is_custom": true
}
],
"total": 123,
"available": [
{
"key": 123,
"percent": 123,
"description": "<string>",
"ubl_category": "<string>",
"reason": "<string>"
}
],
"default_percent": 123
}{
"success": false,
"error": {
"message": "<string>",
"type": "api_error",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
},
"meta": {
"version": "v1",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"response_time": "23.45ms"
}
}VAT Rates
List VAT Rates
List firm-scoped VAT rates plus the full Romanian catalog.
GET
/
vat-rates
List firm VAT rates
curl --request GET \
--url https://api.contazen.ro/v1/vat-rates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.contazen.ro/v1/vat-rates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.contazen.ro/v1/vat-rates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.contazen.ro/v1/vat-rates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.contazen.ro/v1/vat-rates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.contazen.ro/v1/vat-rates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.contazen.ro/v1/vat-rates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"object": "list",
"data": [
{
"id": "<string>",
"percent": 19,
"description": "19% - TVA",
"is_used": true,
"can_be_deleted": true,
"is_custom": true
}
],
"total": 123,
"available": [
{
"key": 123,
"percent": 123,
"description": "<string>",
"ubl_category": "<string>",
"reason": "<string>"
}
],
"default_percent": 123
}{
"success": false,
"error": {
"message": "<string>",
"type": "api_error",
"code": "<string>",
"param": "<string>",
"doc_url": "<string>"
},
"meta": {
"version": "v1",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"response_time": "23.45ms"
}
}Overview
Returns two sets of rates:data— customfirm_vatrows the firm has added (typically used for non-standard or legacy percents).available— the full Romanian VAT catalog filtered for the firm’s VAT-payer type, including the 2025-08-01 rate changes.
percent.
default_percent mirrors FirmVat::getDefaultPercent() and is the rate a
freshly-drafted invoice row should use.Was this page helpful?