Home / VAT Rates / South Africa
South Africa VAT Rates 2026
South Africa (South Africa / Suid-Afrika) levies Value Added Tax as VAT (Value-Added Tax / BTW). The standard rate is 15%, applied to most goods and services. South Africa applies a single flat rate with no reduced rates.
Rate update
South Africa's VAT rate increased from 14% to 15% in 2018. A limited range of basic foodstuffs are zero-rated to reduce impact on lower-income households. SARS administers VAT.
Current rates — 2026
| Type | Rate | Applies to |
|---|---|---|
| Standard | 15% | Most goods and services |
| Zero-rated | 0% | Basic foodstuffs: brown bread, dried beans, rice, maize meal, milk, eggs, fruit, vegetables |
Registration and filing
| Registration threshold | ZAR 1,000,000Mandatory above ZAR 1 million; voluntary from ZAR 50,000 |
| Tax authority | South African Revenue Service (SARS) |
| Filing frequency | Bi-monthly returns for most vendors; monthly above ZAR 30 million turnover |
Access rates via API
The TaxID API returns current VAT and GST rates for 200+ countries and territories. Use the /api/v1/rates/ZA endpoint to get South Africa data programmatically. Responses are cached for 24 hours.
curl http://localhost:3000/api/v1/rates/ZA
# No authentication required for rate lookups
# Response:
# { "country_code": "ZA", "tax_type": "vat",
# "standard_rate": 15, "reduced_rates": [0],
# "currency": "ZAR", "last_updated": "2026-01-01" }Applying the correct rate in code
For B2B sales to South Africa, validate the customer's VAT Registration Number first — a verified registration is typically required for correct invoicing and zero-rated exports. For B2C, charge the South Africa VAT rate where registration rules require it.
// 1. Validate the customer's South Africa tax ID
const check = await fetch(
'http://localhost:3000/api/v1/validate/ZA/CUSTOMER_TAX_ID',
{ headers: { Authorization: 'Bearer YOUR_API_KEY' } }
).then(r => r.json());
// 2. Fetch current South Africa VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/ZA').then(r => r.json());
// → { standard_rate: 15, reduced_rates: [0] }
// 3. Apply the correct treatment for your supply
applyRate(check.valid && isB2BExport ? 0 : rates.standard_rate);About South Africa VAT
South Africa's planned 2025 VAT increase to 15.5% collapsed spectacularly: the proposal split the governing coalition and was withdrawn weeks before taking effect, keeping the rate at 15%. The zero-rated basket of 19 staple foods, from maize meal to eggs, is the system's main equity tool. Foreign suppliers of electronic services must register once their South African sales pass ZAR 1 million — one of Africa's earliest digital-VAT regimes, dating to 2014.
VAT in South Africa is administered by the South African Revenue Service (SARS). Before applying any zero-rate or exemption to a South Africa business customer, validate their registration first.
Sources: PwC Worldwide Tax Summaries · SARS — VAT (accessed Jun 2026)
Rate history
- 2018Rate raised from 14% to 15% — the first change since 1993
- 2025Proposed increase to 15.5% scrapped after a coalition and court battle
Frequently asked questions
What is the VAT rate in South Africa in 2026?
15% — the 2025 budget's proposed rise to 15.5% was withdrawn before implementation.
What food is zero-rated in South Africa?
A basket of 19 staples including brown bread, maize meal, rice, milk, eggs, fruit and vegetables, designed to protect low-income households.
Related concepts and guides: