Holiday Data API Platform

Access real-time holiday data for 200+ countries through our developer-friendly REST API

Build better apps with our comprehensive holiday data platform

Get Started

RESTful API

Modern REST API with JSON responses and comprehensive documentation

Developer Tools

API key management, usage analytics, and comprehensive documentation

Enterprise Ready

99.9% uptime SLA, rate limiting, and versioned API endpoints

Simple, Transparent Pricing

Annual Subscription

$100/year
  • ✓ Unlimited API calls
  • ✓ Complete country coverage
  • ✓ Subdivision data included
  • ✓ Language & currency info
  • ✓ Developer dashboard
  • ✓ Usage analytics
Get Access Now

Simple API Integration


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()