UK Bank Holidays
Official UK bank holidays as JSON
The UK government's machine-readable feed of bank holidays for England & Wales, Scotland and Northern Ireland. Each event carries a title, date, notes and a 'bunting' flag. Served under the Open Government Licence with no key required.
GET https://www.gov.uk/bank-holidays.json
{
"england-and-wales": {
"division": "england-and-wales",
"events": [
{
"title": "New Year’s Day",
"date": "2019-01-01",
"notes": "",
"bunting": true
}
]
}
}curl "https://www.gov.uk/bank-holidays.json"const res = await fetch("https://www.gov.uk/bank-holidays.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.gov.uk/bank-holidays.json")
print(res.json())/bank-holidays.jsonPROBEDOfficial UK bank holidays as JSON
/bank-holidays.json?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
UK Bank Holidays: common questions
Is UK Bank Holidays free to use?
Yes — UK Bank Holidays is a free social & work API. Free tier: Free, no key. Commercial use is allowed on the free tier.
Does UK Bank Holidays need an API key?
No — UK Bank Holidays needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call UK Bank Holidays from the browser?
Yes — UK Bank Holidays returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is UK Bank Holidays up right now?
As of our last scheduled check, UK Bank Holidays is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.