EDGE ENGINE Sub-2ms Deterministic V8 Execution • Zero Data Retention Explore API Specs →
Latency: <1ms Edge Availability: 99.99% Standard: VIES / EU-2026 (PL) V8 Pure Compute

Poland (PL) VAT & VIES Validator

Instant sub-1ms offline checksum validation, syntax verification, and 2026 tax rate lookup for Poland (PL) VAT numbers.

Official Regulatory Standard & Verification Protocol Authority: European Commission Taxation & Customs Union (VIES) ↗

Quick Technical Summary: Instant sub-1ms offline checksum validation, syntax verification, and 2026 tax rate lookup for Poland (PL) VAT numbers. Implementation conforms to EU Council Directive 2006/112/EC.

Execution SLA
<1ms Edge (Cloudflare V8)
Governing Norm
VIES / EU-2026 (PL)
Throughput Limit
512 KB / Payload
Data Privacy
100% In-Memory (Zero Store)

Specification & Structural Breakdown

In Poland, the Value Added Tax (VAT) identification number begins with the country prefix 'PL', followed by the national format: 10 digits, weighted mod-11 checksum (NIP).

The number incorporates a mandatory Weighted MOD-11 arithmetic checksum algorithm that protects against transcription errors before making external VIES subrequests.

For 2026 tax calculations, the standard VAT rate in Poland is 23%, with applicable reduced rates of 8%, 5%.

ParameterValueDetails
Country PrefixPLISO 3166-1 alpha-2 / VIES code
Format Structure10 digits, weighted mod-11 checksum (NIP)National syntax specification
Checksum AlgorithmWeighted MOD-11Offline check digit formula
2026 Standard VAT Rate23%Standard statutory rate
2026 Reduced VAT Rates8%, 5%Applicable reduced & super-reduced rates
Interactive Edge Validator

Test Poland (PL) VAT & VIES Validator Live

Paste raw inputs up to 32KB and inspect deterministic parsed JSON in real-time across 330+ Cloudflare edge locations. Pure compute, zero cold-starts.

Launch Workbench →

Parsed JSON Response Model

The edge microservice transforms input payloads into strongly-typed hierarchical JSON with zero cold starts:

HTTP 200 JSON Payload
{
  "valid": true,
  "countryCode": "PL",
  "countryName": "Poland",
  "vatNumber": "PL123456789",
  "syntaxValid": true,
  "checksumValid": true,
  "rates": {
    "standardRate": 23,
    "reducedRates": [
      8,
      5
    ],
    "effectiveYear": 2026
  }
}

Copy-Paste Integration Code

Integrate this validator directly into your application using your production API key:

cURL
curl --request POST \
  --url "https://eu-uk-vat-validator-rate-engine.stanzaapi.com/api/v1/vat/validate" \
  --header "Content-Type: application/json" \
  --header "x-api-key: YOUR_API_KEY" \
  --data '{
  "vatNumber": "DE123456789"
}'
Node.js (Fetch)
const response = await fetch("https://eu-uk-vat-validator-rate-engine.stanzaapi.com/api/v1/vat/validate", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "x-api-key": process.env.API_KEY || "YOUR_API_KEY"
  },
  body: JSON.stringify({
  "vatNumber": "DE123456789"
})
});

const data = await response.json();
console.log(data);
Python (Requests)
import requests
import json

url = "https://eu-uk-vat-validator-rate-engine.stanzaapi.com/api/v1/vat/validate"
headers = {
    "Content-Type": "application/json",
    "x-api-key": "YOUR_API_KEY"
}
payload = {
    "vatNumber": "DE123456789"
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())
Go
package main

import (
	"bytes"
	"fmt"
	"io"
	"net/http"
	"os"
)

func main() {
	url := "https://eu-uk-vat-validator-rate-engine.stanzaapi.com/api/v1/vat/validate"
	payload := []byte(`{"vatNumber":"DE123456789"}`)

	req, _ := http.NewRequest("POST", url, bytes.NewBuffer(payload))
	req.Header.Add("Content-Type", "application/json")
	req.Header.Add("x-api-key", os.Getenv("API_KEY"))

	res, err := http.DefaultClient.Do(req)
	if err != nil {
		panic(err)
	}
	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)
	fmt.Println(string(body))
}

Frequently Asked Questions & Technical Notes

What is the standard VAT rate in Poland for 2026?

The standard VAT rate in Poland is 23%. Certain goods and services qualify for reduced rates of 8%, 5%.

Can Poland VAT numbers be validated offline without VIES downtime?

Yes. Our API executes deterministic mathematical checksums and regex format rules at the Cloudflare edge in <1ms, shielding your checkout flow from slow or offline European Commission VIES servers.

Related EU & UK VAT Validator & Rate Engine API Formats

Explore sibling specifications and standards in the same developer cluster: