Virgin Islands (British) 2026 Holidays
List of public holidays in Virgin Islands (British) for year 2026
Virgin Islands (British) - 2026 Holidays
19 of 19 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2026 | Thursday | New Year's Day | Public Holiday |
| Mar 7, 2026 | Saturday | Lavity Stoutt's Birthday Holiday | Public Holiday |
| Mar 20, 2026 | Friday | March Equinox | Season |
| Apr 3, 2026 | Friday | Good Friday | Public Holiday |
| Apr 6, 2026 | Monday | Easter Monday | Public Holiday |
| May 25, 2026 | Monday | Whit Monday | Public Holiday |
| Jun 19, 2026 | Friday | Sovereign's Birthday | Public Holiday |
| Jun 21, 2026 | Sunday | June Solstice | Season |
| Jul 1, 2026 | Wednesday | Virgin Islands Day | Public Holiday |
| Aug 3, 2026 | Monday | Emancipation Monday | Public Holiday |
| Aug 4, 2026 | Tuesday | Emancipation Tuesday | Public Holiday |
| Aug 5, 2026 | Wednesday | Emancipation Wednesday | Public Holiday |
| Sep 22, 2026 | Tuesday | September Equinox | Season |
| Oct 19, 2026 | Monday | Heroes and Forefathers Day | Public Holiday |
| Oct 21, 2026 | Wednesday | Saint Ursula's Day | Observance |
| Nov 9, 2026 | Monday | The Great March of 1949 and Restoration Day | Public Holiday |
| Dec 21, 2026 | Monday | December Solstice | Season |
| Dec 25, 2026 | Friday | Christmas Day | Public Holiday |
| Dec 26, 2026 | Saturday | Boxing Day | Public Holiday |
We strive to provide an accurate and up-to-date holiday list for Virgin Islands (British). However, please note that some holiday dates may change. If you discover any discrepancies, kindly report to us.
Holiday Type Color Legend
Holidays are color-coded based on their types:
- Public HolidayPublic, National, Federal, and Gazetted holidays
- Local HolidayLocal, Regional, State, and Provincial holidays
- Other HolidayObservances and other types of holidays
Frequently Asked Questions
How many holidays in Virgin Islands (British) this year in 2026?
There are 14 public holidays in Virgin Islands (British) in 2026. If you are planning ahead? Check upcoming holidays
How to retrieve the Virgin Islands (British) holidays list via API?
Simply make a GET request to v1/holidays?country=VG&year=2026 API to retrieve this list of Virgin Islands (British) holidays.
Here is an example using Node.js and our official package on NPM:
// Install the 11holidays package from NPM
// npm i 11holidays
import HolidaysApi from '11holidays';
const instance = new HolidaysApi(API_KEY);
const holidays = await instance.holidays.list({
country: 'VG',
year: '2026'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=VG&year=2026" \
-H "Authorization: Bearer YOUR_API_KEY"