World Holidays is a simple tool for getting the holidays of the world. It returns the holidays of the world for each day of the year. To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.
Important: Ensure that this API is enabled from within your dashboard to use it in your application. If not, you may receive a 403
error
Get the holidays of a country for a given year
This is a required header
on every request. Your API Key is found from within your dashboard
This is an optional header
. Set the value to application/json
, application/xml
, or application/yaml
string
(required)The country code for which you want to get the holidays (e.g., US). Must be a two letter country code
yearint
The year for which you want to get the holidays
Sample Request
import requests
url = "https://api.apiverve.com/v1/worldholidays"
querystring = {'country': 'US', 'year': '2025'}
headers = {
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers, params=querystring)
print(response.json())
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("https://api.apiverve.com/v1/worldholidays?country=US&year=2025"),
Headers =
{
{ "x-api-key", "YOUR_API_KEY" }
},
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', 'https://api.apiverve.com/v1/worldholidays?country=US&year=2025');
xhr.setRequestHeader('x-api-key', 'YOUR_API_KEY');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');
xhr.send(data);
const request = require('request');
const options = {
method: 'GET',
url: 'https://api.apiverve.com/v1/worldholidays?country=US&year=2025',
headers: {
'x-api-key': 'YOUR_API_KEY'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.apiverve.com/v1/worldholidays?country=US&year=2025"))
.header("x-api-key", "YOUR_API_KEY")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import Foundation
let headers = [
"x-api-key": "YOUR_API_KEY"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://api.apiverve.com/v1/worldholidays?country=US&year=2025")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
curl --request GET \
--url 'https://api.apiverve.com/v1/worldholidays?country=US&year=2025' \
--header 'x-api-key: YOUR_API_KEY'
Sample Response
{
"status": "ok",
"error": null,
"data": {
"country": "US",
"year": "2024",
"holidays": [
{
"date": "2024-01-01 00:00:00",
"start": "2024-01-01T05:00:00Z",
"end": "2024-01-02T05:00:00Z",
"name": "New Year's Day",
"type": "public"
},
{
"date": "2024-01-15 00:00:00",
"start": "2024-01-15T05:00:00Z",
"end": "2024-01-16T05:00:00Z",
"name": "Martin Luther King Jr. Day",
"type": "public"
},
{
"date": "2024-02-14 00:00:00",
"start": "2024-02-14T05:00:00Z",
"end": "2024-02-15T05:00:00Z",
"name": "Valentine's Day",
"type": "observance"
},
{
"date": "2024-02-19 00:00:00",
"start": "2024-02-19T05:00:00Z",
"end": "2024-02-20T05:00:00Z",
"name": "Washington's Birthday",
"type": "public"
},
{
"date": "2024-03-17 00:00:00",
"start": "2024-03-17T04:00:00Z",
"end": "2024-03-18T04:00:00Z",
"name": "St. Patrick's Day",
"type": "observance"
},
{
"date": "2024-03-31 00:00:00",
"start": "2024-03-31T04:00:00Z",
"end": "2024-04-01T04:00:00Z",
"name": "Easter Sunday",
"type": "observance"
},
{
"date": "2024-04-15 00:00:00",
"start": "2024-04-15T04:00:00Z",
"end": "2024-04-16T04:00:00Z",
"name": "Tax Day",
"type": "observance"
},
{
"date": "2024-04-24 00:00:00",
"start": "2024-04-24T04:00:00Z",
"end": "2024-04-25T04:00:00Z",
"name": "Administrative Professionals Day",
"type": "observance"
},
{
"date": "2024-05-12 00:00:00",
"start": "2024-05-12T04:00:00Z",
"end": "2024-05-13T04:00:00Z",
"name": "Mother's Day",
"type": "observance"
},
{
"date": "2024-05-27 00:00:00",
"start": "2024-05-27T04:00:00Z",
"end": "2024-05-28T04:00:00Z",
"name": "Memorial Day",
"type": "public"
},
{
"date": "2024-06-16 00:00:00",
"start": "2024-06-16T04:00:00Z",
"end": "2024-06-17T04:00:00Z",
"name": "Father's Day",
"type": "observance"
},
{
"date": "2024-06-19 00:00:00",
"start": "2024-06-19T04:00:00Z",
"end": "2024-06-20T04:00:00Z",
"name": "Juneteenth",
"type": "public"
},
{
"date": "2024-07-04 00:00:00",
"start": "2024-07-04T04:00:00Z",
"end": "2024-07-05T04:00:00Z",
"name": "Independence Day",
"type": "public"
},
{
"date": "2024-09-02 00:00:00",
"start": "2024-09-02T04:00:00Z",
"end": "2024-09-03T04:00:00Z",
"name": "Labor Day",
"type": "public"
},
{
"date": "2024-10-14 00:00:00",
"start": "2024-10-14T04:00:00Z",
"end": "2024-10-15T04:00:00Z",
"name": "Columbus Day",
"type": "public"
},
{
"date": "2024-10-31 18:00:00",
"start": "2024-10-31T22:00:00Z",
"end": "2024-11-01T04:00:00Z",
"name": "Halloween",
"type": "observance"
},
{
"date": "2024-11-05 00:00:00",
"start": "2024-11-05T05:00:00Z",
"end": "2024-11-06T05:00:00Z",
"name": "Election Day",
"type": "observance"
},
{
"date": "2024-11-11 00:00:00",
"start": "2024-11-11T05:00:00Z",
"end": "2024-11-12T05:00:00Z",
"name": "Veterans Day",
"type": "public"
},
{
"date": "2024-11-28 00:00:00",
"start": "2024-11-28T05:00:00Z",
"end": "2024-11-29T05:00:00Z",
"name": "Thanksgiving Day",
"type": "public"
},
{
"date": "2024-11-29 00:00:00",
"start": "2024-11-29T05:00:00Z",
"end": "2024-11-30T05:00:00Z",
"name": "Day after Thanksgiving Day",
"type": "observance"
},
{
"date": "2024-12-24 00:00:00",
"start": "2024-12-24T05:00:00Z",
"end": "2024-12-25T05:00:00Z",
"name": "Christmas Eve",
"type": "optional"
},
{
"date": "2024-12-25 00:00:00",
"start": "2024-12-25T05:00:00Z",
"end": "2024-12-26T05:00:00Z",
"name": "Christmas Day",
"type": "public"
},
{
"date": "2024-12-31 00:00:00",
"start": "2024-12-31T05:00:00Z",
"end": "2025-01-01T05:00:00Z",
"name": "New Year's Eve",
"type": "observance"
}
]
},
"code": 200
}
<Root>
<status>ok</status>
<error />
<data>
<country>US</country>
<year>2024</year>
<holidays>
<date>2024-01-01 00:00:00</date>
<start>2024-01-01T05:00:00Z</start>
<end>2024-01-02T05:00:00Z</end>
<name>New Year's Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-01-15 00:00:00</date>
<start>2024-01-15T05:00:00Z</start>
<end>2024-01-16T05:00:00Z</end>
<name>Martin Luther King Jr. Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-02-14 00:00:00</date>
<start>2024-02-14T05:00:00Z</start>
<end>2024-02-15T05:00:00Z</end>
<name>Valentine's Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-02-19 00:00:00</date>
<start>2024-02-19T05:00:00Z</start>
<end>2024-02-20T05:00:00Z</end>
<name>Washington's Birthday</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-03-17 00:00:00</date>
<start>2024-03-17T04:00:00Z</start>
<end>2024-03-18T04:00:00Z</end>
<name>St. Patrick's Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-03-31 00:00:00</date>
<start>2024-03-31T04:00:00Z</start>
<end>2024-04-01T04:00:00Z</end>
<name>Easter Sunday</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-04-15 00:00:00</date>
<start>2024-04-15T04:00:00Z</start>
<end>2024-04-16T04:00:00Z</end>
<name>Tax Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-04-24 00:00:00</date>
<start>2024-04-24T04:00:00Z</start>
<end>2024-04-25T04:00:00Z</end>
<name>Administrative Professionals Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-05-12 00:00:00</date>
<start>2024-05-12T04:00:00Z</start>
<end>2024-05-13T04:00:00Z</end>
<name>Mother's Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-05-27 00:00:00</date>
<start>2024-05-27T04:00:00Z</start>
<end>2024-05-28T04:00:00Z</end>
<name>Memorial Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-06-16 00:00:00</date>
<start>2024-06-16T04:00:00Z</start>
<end>2024-06-17T04:00:00Z</end>
<name>Father's Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-06-19 00:00:00</date>
<start>2024-06-19T04:00:00Z</start>
<end>2024-06-20T04:00:00Z</end>
<name>Juneteenth</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-07-04 00:00:00</date>
<start>2024-07-04T04:00:00Z</start>
<end>2024-07-05T04:00:00Z</end>
<name>Independence Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-09-02 00:00:00</date>
<start>2024-09-02T04:00:00Z</start>
<end>2024-09-03T04:00:00Z</end>
<name>Labor Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-10-14 00:00:00</date>
<start>2024-10-14T04:00:00Z</start>
<end>2024-10-15T04:00:00Z</end>
<name>Columbus Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-10-31 18:00:00</date>
<start>2024-10-31T22:00:00Z</start>
<end>2024-11-01T04:00:00Z</end>
<name>Halloween</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-11-05 00:00:00</date>
<start>2024-11-05T05:00:00Z</start>
<end>2024-11-06T05:00:00Z</end>
<name>Election Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-11-11 00:00:00</date>
<start>2024-11-11T05:00:00Z</start>
<end>2024-11-12T05:00:00Z</end>
<name>Veterans Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-11-28 00:00:00</date>
<start>2024-11-28T05:00:00Z</start>
<end>2024-11-29T05:00:00Z</end>
<name>Thanksgiving Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-11-29 00:00:00</date>
<start>2024-11-29T05:00:00Z</start>
<end>2024-11-30T05:00:00Z</end>
<name>Day after Thanksgiving Day</name>
<type>observance</type>
</holidays>
<holidays>
<date>2024-12-24 00:00:00</date>
<start>2024-12-24T05:00:00Z</start>
<end>2024-12-25T05:00:00Z</end>
<name>Christmas Eve</name>
<type>optional</type>
</holidays>
<holidays>
<date>2024-12-25 00:00:00</date>
<start>2024-12-25T05:00:00Z</start>
<end>2024-12-26T05:00:00Z</end>
<name>Christmas Day</name>
<type>public</type>
</holidays>
<holidays>
<date>2024-12-31 00:00:00</date>
<start>2024-12-31T05:00:00Z</start>
<end>2025-01-01T05:00:00Z</end>
<name>New Year's Eve</name>
<type>observance</type>
</holidays>
</data>
<code>200</code>
</Root>
status: ok
error:
data:
country: US
year: 2024
holidays:
- date: 2024-01-01 00:00:00
start: 2024-01-01T05:00:00.0000000Z
end: 2024-01-02T05:00:00.0000000Z
name: New Year's Day
type: public
- date: 2024-01-15 00:00:00
start: 2024-01-15T05:00:00.0000000Z
end: 2024-01-16T05:00:00.0000000Z
name: Martin Luther King Jr. Day
type: public
- date: 2024-02-14 00:00:00
start: 2024-02-14T05:00:00.0000000Z
end: 2024-02-15T05:00:00.0000000Z
name: Valentine's Day
type: observance
- date: 2024-02-19 00:00:00
start: 2024-02-19T05:00:00.0000000Z
end: 2024-02-20T05:00:00.0000000Z
name: Washington's Birthday
type: public
- date: 2024-03-17 00:00:00
start: 2024-03-17T04:00:00.0000000Z
end: 2024-03-18T04:00:00.0000000Z
name: St. Patrick's Day
type: observance
- date: 2024-03-31 00:00:00
start: 2024-03-31T04:00:00.0000000Z
end: 2024-04-01T04:00:00.0000000Z
name: Easter Sunday
type: observance
- date: 2024-04-15 00:00:00
start: 2024-04-15T04:00:00.0000000Z
end: 2024-04-16T04:00:00.0000000Z
name: Tax Day
type: observance
- date: 2024-04-24 00:00:00
start: 2024-04-24T04:00:00.0000000Z
end: 2024-04-25T04:00:00.0000000Z
name: Administrative Professionals Day
type: observance
- date: 2024-05-12 00:00:00
start: 2024-05-12T04:00:00.0000000Z
end: 2024-05-13T04:00:00.0000000Z
name: Mother's Day
type: observance
- date: 2024-05-27 00:00:00
start: 2024-05-27T04:00:00.0000000Z
end: 2024-05-28T04:00:00.0000000Z
name: Memorial Day
type: public
- date: 2024-06-16 00:00:00
start: 2024-06-16T04:00:00.0000000Z
end: 2024-06-17T04:00:00.0000000Z
name: Father's Day
type: observance
- date: 2024-06-19 00:00:00
start: 2024-06-19T04:00:00.0000000Z
end: 2024-06-20T04:00:00.0000000Z
name: Juneteenth
type: public
- date: 2024-07-04 00:00:00
start: 2024-07-04T04:00:00.0000000Z
end: 2024-07-05T04:00:00.0000000Z
name: Independence Day
type: public
- date: 2024-09-02 00:00:00
start: 2024-09-02T04:00:00.0000000Z
end: 2024-09-03T04:00:00.0000000Z
name: Labor Day
type: public
- date: 2024-10-14 00:00:00
start: 2024-10-14T04:00:00.0000000Z
end: 2024-10-15T04:00:00.0000000Z
name: Columbus Day
type: public
- date: 2024-10-31 18:00:00
start: 2024-10-31T22:00:00.0000000Z
end: 2024-11-01T04:00:00.0000000Z
name: Halloween
type: observance
- date: 2024-11-05 00:00:00
start: 2024-11-05T05:00:00.0000000Z
end: 2024-11-06T05:00:00.0000000Z
name: Election Day
type: observance
- date: 2024-11-11 00:00:00
start: 2024-11-11T05:00:00.0000000Z
end: 2024-11-12T05:00:00.0000000Z
name: Veterans Day
type: public
- date: 2024-11-28 00:00:00
start: 2024-11-28T05:00:00.0000000Z
end: 2024-11-29T05:00:00.0000000Z
name: Thanksgiving Day
type: public
- date: 2024-11-29 00:00:00
start: 2024-11-29T05:00:00.0000000Z
end: 2024-11-30T05:00:00.0000000Z
name: Day after Thanksgiving Day
type: observance
- date: 2024-12-24 00:00:00
start: 2024-12-24T05:00:00.0000000Z
end: 2024-12-25T05:00:00.0000000Z
name: Christmas Eve
type: optional
- date: 2024-12-25 00:00:00
start: 2024-12-25T05:00:00.0000000Z
end: 2024-12-26T05:00:00.0000000Z
name: Christmas Day
type: public
- date: 2024-12-31 00:00:00
start: 2024-12-31T05:00:00.0000000Z
end: 2025-01-01T05:00:00.0000000Z
name: New Year's Eve
type: observance
code: 200
The World Holidays API supports the following response content types:
application/json
, application/xml
, application/yaml
You can specify the response content type by setting the Accept
header in your request. If you don't specify a content type, the API will default to application/json
.
The World Holidays API uses an API Key to authenticate requests. You can view and manage your API key by visiting your dashboard.
Your API keys carry many privileges. To keep them from being abused, please do not share the keys on client-side code or Github etc. Keep them very secure.
To use any API, you must have it enabled from within your dashboard. Disabled APIs will fail to respond to your requests.
All requests made to the API must contain the header x-api-key
in each of your requests. API requests without authentication will fail.
All API requests must also be made over secure HTTPS
. Requests made over plain HTTP
will fail.
Error Code | Meaning |
---|---|
401 | Your request was made with invalid credentials. This error also appears when you don't pass the x-api-key header in your request.
|
403 | Typically, this occurs when you are trying to access an API that you have not enabled. |
{
"status": "error",
"data": null,
"error": "tokens have been depleted",
"code": 429
}
Each subscription has its own monthly token limit. Your token count is based on your subscription plan. If you reach your limits, don't worry. You can always upgrade or downgrade at any time.
When you reach your limit, the service will stop responding and typically return an HTTP 429
response status code. The error will also contain a detailed JSON.
The World Holidays API uses the following error code:
Error Code | Meaning |
---|---|
429 | You have exceeded your rate limit and further requests will be denied until the next cycle. |
For reference, the World Holidays API uses the following error codes:
Error Code | Meaning |
---|---|
Code | Message |
200 | The request was successful. The response will include the requested data. |
400 | The request was invalid. The response will include a message that explains the error. |
401 | The request was not authorized. Usually, this means that the API key is missing or invalid. |
403 | This means that the request was trying to access a resource that it does not have permission to access. |
404 | This means that the resource you are trying to access does not exist. |
429 | This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request. |
500 | This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible. |