Access real-time holiday data for 200+ countries through our developer-friendly REST API
Build better apps with our comprehensive holiday data platform
Get StartedModern REST API with JSON responses and comprehensive documentation
API key management, usage analytics, and comprehensive documentation
99.9% uptime SLA, rate limiting, and versioned API endpoints
import requests
api_key = 'your_api_key'
response = requests.get(
'https://api.offday.xyz/v1/holidays',
headers={'X-API-Key': api_key},
params={
'country': 'US',
'year': 2024,
'include': ['name', 'date', 'type', 'description']
}
)
holidays = response.json()