Working Days is a simple tool for getting the number of working days in a month. It returns the number of working days in the given month.
To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.
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 you want to get the number of working days for (e.g. US)
yearinteger
(required)The year you want to get the number of working days for (e.g. 2023)
monthinteger
The 2 digit month you want to get the number of working days for (e.g. 10)
Sample Request
import requests
url = "https://api.apiverve.com/v1/workingdays"
querystring = {'country': 'US', 'year': '2023', 'month': '10'}
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/workingdays?country=US&year=2023&month=10"),
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/workingdays?country=US&year=2023&month=10');
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/workingdays?country=US&year=2023&month=10',
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/workingdays?country=US&year=2023&month=10"))
.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/workingdays?country=US&year=2023&month=10")! 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/workingdays?country=US&year=2023&month=10' \
--header 'x-api-key: YOUR_API_KEY'
Sample Response
{
"status": "ok",
"error": null,
"data": {
"workingDaysCount": 21,
"nonWorkingDaysCount": 10,
"workingDays": [
"2023-10-02",
"2023-10-03",
"2023-10-04",
"2023-10-05",
"2023-10-06",
"2023-10-10",
"2023-10-11",
"2023-10-12",
"2023-10-13",
"2023-10-16",
"2023-10-17",
"2023-10-18",
"2023-10-19",
"2023-10-20",
"2023-10-23",
"2023-10-24",
"2023-10-25",
"2023-10-26",
"2023-10-27",
"2023-10-30",
"2023-10-31"
],
"nonWorkingDays": [
{
"date": "2023-10-01",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-07",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-08",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-09",
"reasons": [
"public holiday"
],
"holiday_name": "Columbus Day"
},
{
"date": "2023-10-14",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-15",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-21",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-22",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-28",
"reasons": [
"weekend"
],
"holiday_name": null
},
{
"date": "2023-10-29",
"reasons": [
"weekend"
],
"holiday_name": null
}
]
},
"code": 200
}
<Root>
<status>ok</status>
<error />
<data>
<workingDaysCount>21</workingDaysCount>
<nonWorkingDaysCount>10</nonWorkingDaysCount>
<workingDays>2023-10-02</workingDays>
<workingDays>2023-10-03</workingDays>
<workingDays>2023-10-04</workingDays>
<workingDays>2023-10-05</workingDays>
<workingDays>2023-10-06</workingDays>
<workingDays>2023-10-10</workingDays>
<workingDays>2023-10-11</workingDays>
<workingDays>2023-10-12</workingDays>
<workingDays>2023-10-13</workingDays>
<workingDays>2023-10-16</workingDays>
<workingDays>2023-10-17</workingDays>
<workingDays>2023-10-18</workingDays>
<workingDays>2023-10-19</workingDays>
<workingDays>2023-10-20</workingDays>
<workingDays>2023-10-23</workingDays>
<workingDays>2023-10-24</workingDays>
<workingDays>2023-10-25</workingDays>
<workingDays>2023-10-26</workingDays>
<workingDays>2023-10-27</workingDays>
<workingDays>2023-10-30</workingDays>
<workingDays>2023-10-31</workingDays>
<nonWorkingDays>
<date>2023-10-01</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-07</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-08</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-09</date>
<reasons>public holiday</reasons>
<holiday_name>Columbus Day</holiday_name>
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-14</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-15</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-21</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-22</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-28</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
<nonWorkingDays>
<date>2023-10-29</date>
<reasons>weekend</reasons>
<holiday_name />
</nonWorkingDays>
</data>
<code>200</code>
</Root>
status: ok
error:
data:
workingDaysCount: 21
nonWorkingDaysCount: 10
workingDays:
- 2023-10-02
- 2023-10-03
- 2023-10-04
- 2023-10-05
- 2023-10-06
- 2023-10-10
- 2023-10-11
- 2023-10-12
- 2023-10-13
- 2023-10-16
- 2023-10-17
- 2023-10-18
- 2023-10-19
- 2023-10-20
- 2023-10-23
- 2023-10-24
- 2023-10-25
- 2023-10-26
- 2023-10-27
- 2023-10-30
- 2023-10-31
nonWorkingDays:
- date: 2023-10-01
reasons:
- weekend
holiday_name:
- date: 2023-10-07
reasons:
- weekend
holiday_name:
- date: 2023-10-08
reasons:
- weekend
holiday_name:
- date: 2023-10-09
reasons:
- public holiday
holiday_name: Columbus Day
- date: 2023-10-14
reasons:
- weekend
holiday_name:
- date: 2023-10-15
reasons:
- weekend
holiday_name:
- date: 2023-10-21
reasons:
- weekend
holiday_name:
- date: 2023-10-22
reasons:
- weekend
holiday_name:
- date: 2023-10-28
reasons:
- weekend
holiday_name:
- date: 2023-10-29
reasons:
- weekend
holiday_name:
code: 200
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"status": {
"type": "string"
},
"error": {},
"data": {
"$ref": "#/definitions/Data"
},
"code": {
"type": "integer"
}
},
"definitions": {
"Data": {
"type": "object",
"properties": {
"workingDaysCount": {
"type": "integer"
},
"nonWorkingDaysCount": {
"type": "integer"
},
"workingDays": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkingDay"
}
},
"nonWorkingDays": {
"type": "array",
"items": {
"$ref": "#/definitions/NonWorkingDay"
}
}
}
},
"WorkingDay": {
"type": "string"
},
"Reason": {
"type": "string"
},
"Anonymous4": {
"type": "string"
},
"Anonymous5": {
"type": "string"
},
"Anonymous6": {
"type": "string"
},
"Anonymous7": {
"type": "string"
},
"Anonymous8": {
"type": "string"
},
"Anonymous9": {
"type": "string"
},
"Anonymous10": {
"type": "string"
},
"Anonymous11": {
"type": "string"
},
"Anonymous12": {
"type": "string"
},
"NonWorkingDay": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date"
},
"reasons": {
"type": "array",
"items": {
"$ref": "#/definitions/Reason"
}
},
"holiday_name": {}
}
}
}
}
openapi: 3.0.4
info:
title: APIVerve
description: Unleash the potential of your applications with a single API Key and access to various APIs
termsOfService: https://apiverve.com/terms/
contact:
name: APIVerve Support
email: [email protected]
url: https://apiverve.com/contact
version: 1.0.9
externalDocs:
description: Learn more about APIVerve
url: https://docs.apiverve.com?utm_source=openapi
servers:
- url: https://api.apiverve.com/
paths:
/v1/workingdays:
get:
summary: Get Working Days
description: Working Days is a simple tool for getting the number of working days in a month. It returns the number of working days in the given month.
operationId: workingdays
parameters:
- name: country
in: query
schema:
type: string
required: true
description: The country you want to get the number of working days for (e.g. US)
example: US
- name: year
in: query
schema:
type: integer
required: true
description: The year you want to get the number of working days for (e.g. 2023)
example: '2023'
- name: month
in: query
schema:
type: integer
required: false
description: The 2 digit month you want to get the number of working days for (e.g. 10)
example: '10'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
properties:
status:
type: string
description: status
error:
type: string
description: error
data:
type: string
description: data
code:
type: number
description: code
example:
status: ok
error:
data:
workingDaysCount: 21
nonWorkingDaysCount: 10
workingDays:
- 2023-10-02
- 2023-10-03
- 2023-10-04
- 2023-10-05
- 2023-10-06
- 2023-10-10
- 2023-10-11
- 2023-10-12
- 2023-10-13
- 2023-10-16
- 2023-10-17
- 2023-10-18
- 2023-10-19
- 2023-10-20
- 2023-10-23
- 2023-10-24
- 2023-10-25
- 2023-10-26
- 2023-10-27
- 2023-10-30
- 2023-10-31
nonWorkingDays:
- date: 2023-10-01
reasons:
- weekend
holiday_name:
- date: 2023-10-07
reasons:
- weekend
holiday_name:
- date: 2023-10-08
reasons:
- weekend
holiday_name:
- date: 2023-10-09
reasons:
- public holiday
holiday_name: Columbus Day
- date: 2023-10-14
reasons:
- weekend
holiday_name:
- date: 2023-10-15
reasons:
- weekend
holiday_name:
- date: 2023-10-21
reasons:
- weekend
holiday_name:
- date: 2023-10-22
reasons:
- weekend
holiday_name:
- date: 2023-10-28
reasons:
- weekend
holiday_name:
- date: 2023-10-29
reasons:
- weekend
holiday_name:
code: 200
'401':
description: Your request was not authorized, or your API Key was invalid
'404':
description: Requested resource was not found
'500':
description: A server error has occured, try again later
components:
securitySchemes:
api_key:
type: apiKey
name: x-api-key
in: header
security:
- api_key: []
The Working Days 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 Working Days 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.
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.
|
{
"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. View Pricing
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 Working Days 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 Working Days 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. |