🌍 World Holidays API

Free holiday data for South Korea, United States, Japan, China, Vietnam, Malaysia, Thailand, Canada, Brazil, and Taiwan

-
Countries
-
Total Holidays
-
Years (2024-2026)
0
Cost (Free!)

πŸš€ API Endpoints

🏳️ Supported Countries

πŸ“… Interactive Holiday Calendar

-
Remaining This Year
-
Holidays This Year
2025
Current Year
πŸ“… Loading calendar...

πŸ’» Usage Examples

πŸ“± Flutter/Dart

import 'package:world_holidays/world_holidays.dart';

final worldHolidays = WorldHolidays();
final holidays = await worldHolidays.getHolidays('KR');
print('Found ${holidays.length} Korean holidays');

🌐 JavaScript/Web

fetch('https://beomq.github.io/world_holidays/api/holidays/kr.json')
  .then(response => response.json())
  .then(data => {
    console.log(`Found ${data.holidays.length} holidays`);
  });

🐍 Python

import requests

url = 'https://beomq.github.io/world_holidays/api/holidays/kr.json'
response = requests.get(url)
data = response.json()
print(f"Found {len(data['holidays'])} holidays")

πŸ“¦ cURL

curl -X GET "https://beomq.github.io/world_holidays/api/countries.json"

πŸ“Š Data Structure

πŸ›οΈ Countries Response

{
  "lastUpdated": "2025-09-12T00:00:00.000Z",
  "totalCountries": 10,
  "supportedCountries": ["KR", "US", "JP", "CN", "VN", "MY", "TH", "CA", "BR", "TW"],
  "supportedYears": [2024, 2025, 2026],
  "totalHolidays": 508,
  "countries": [
    {
      "code": "KR",
      "name": "South Korea",
      "flag": "πŸ‡°πŸ‡·",
      "totalHolidays": 41,
      "dataUrl": "https://beomq.github.io/world_holidays/api/holidays/kr.json",
      "names": {
        "en": "South Korea",
        "ko": "λŒ€ν•œλ―Όκ΅­"
      }
    }
  ]
}

πŸŽ‰ Holiday Response

{
  "country": "KR",
  "countryName": "South Korea",
  "lastUpdated": "2025-09-12T00:00:00.000Z",
  "supportedYears": [2024, 2025, 2026],
  "totalHolidays": 41,
  "holidays": [
    {
      "name": "μ‹ μ •",
      "date": "2024-01-01",
      "type": "NATIONAL",
      "description": {
        "en": "New Year's Day",
        "ko": "μƒˆν•΄ 첫날"
      }
    }
  ]
}

πŸ”— Links