GuiStracini.HolidayAPI 3.3.839

There is a newer version of this package available.
See the version list below for details.
dotnet add package GuiStracini.HolidayAPI --version 3.3.839
                    
NuGet\Install-Package GuiStracini.HolidayAPI -Version 3.3.839
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GuiStracini.HolidayAPI" Version="3.3.839" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GuiStracini.HolidayAPI" Version="3.3.839" />
                    
Directory.Packages.props
<PackageReference Include="GuiStracini.HolidayAPI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GuiStracini.HolidayAPI --version 3.3.839
                    
#r "nuget: GuiStracini.HolidayAPI, 3.3.839"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GuiStracini.HolidayAPI@3.3.839
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GuiStracini.HolidayAPI&version=3.3.839
                    
Install as a Cake Addin
#tool nuget:?package=GuiStracini.HolidayAPI&version=3.3.839
                    
Install as a Cake Tool

GuiStracini.HolidayAPI

A client wrapper of the Holiday API for .NET projects (both Core & Framewok).

GitHub license time tracker

HolidayAPI

CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

Codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities

DeepSource

Installation

Github Releases

GitHub last release Github All Releases

Download the latest zip file from the Release page.

Nuget package manager

Package Version Downloads
GuiStracini.HolidayAPI GuiStracini.HolidayAPI NuGet Version GuiStracini.HolidayAPI NuGet Downloads

Features

Implements all features of Holiday API available at HolidayAPI docs

  • Get holidays list (country code and year required)
  • Get filtered holidays (day, month, public, upcoming, previous, subdivisions, switch response language, search parameter)
  • Get countries list
  • Get filtered countries (search parameter)
  • Get languages list
  • Get filtered languages (search parameter)
  • Get workday
  • Get workdays

Usage

Get your API key at Holiday API site.


//Http Client - you should use your DI container for it
var client = HttpClientFactory.Create();
client.BaseAddress = new Uri("https://holidayapi.com/");
client.DefaultRequestHeaders.ExpectContinue = false;
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

//Use your API key
var myKey = "00000000-0000-0000-0000-000000000000";

//Instantiate a holidayApi client with your API key (GUID/UUID)
var holidayClient = new HolidayApiClient(myKey, client);

//Getting all holidays in Brazil for the year 2019:
var holidays = await holidayClient.GetHolidaysAsync("BR", 2019, CancellationToken.None);
foreach(var holiday in holidays)
    Console.WriteLine("Holiday: {0} | Date: {1}", holiday.Name, holiday.Date);

//Getting all available countries
var countries = await holidayClient.GetCountriesAsync(CancellationToken.None);
foreach(var country in countries)
    Console.WriteLine("Country: {0} | Code: {1} | Flag: {2}", country.Name, country.Code, country.Flag);

//Getting all available languages
var languages = await holidayClient.GetLanguagesAsync(CancellationToken.None);
foreach(var language in languages)
    Console.WriteLine("Code: {0} | Name: {1}", language.Code, language.Name);

//Getting workday
var workday = await holidayClient.GetWorkdayAsync("BR", "2019-06-23", 10, CancellationToken.None);
Console.WriteLine("Workday: {0}", workday.Date);

//Getting workdays between two dates
var workdays = await holidayClient.GetWorkdaysAsync("BR", "2021-01-01", "2021-06-01", CancellationToken.None);
Console.WriteLine("Workdays: {0}". workdays.Days);

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.3.922 169 10/6/2025
3.3.919 166 9/29/2025
3.3.916 300 9/15/2025
3.3.912 244 9/15/2025
3.3.905 180 9/10/2025
3.3.902 163 9/8/2025
3.3.897 176 9/4/2025
3.3.894 175 9/4/2025
3.3.888 176 9/3/2025
3.3.882 200 8/29/2025
3.3.875 203 8/29/2025
3.3.862 169 8/18/2025
3.3.855 167 8/11/2025
3.3.850 171 8/4/2025
3.3.847 168 7/28/2025
3.3.844 450 7/25/2025
3.3.839 515 7/23/2025
3.3.834 559 7/23/2025
3.3.828 185 7/15/2025
3.3.823 181 7/14/2025
3.3.818 242 6/16/2025
3.3.815 396 6/12/2025
3.3.812 207 5/26/2025
3.3.809 207 5/22/2025
3.3.808 204 5/19/2025
3.3.805 199 5/19/2025
3.3.800 210 5/9/2025
3.3.796 280 4/14/2025
3.3.795 256 4/14/2025
3.3.792 253 4/14/2025
3.3.787 249 4/7/2025
3.3.784 413 3/24/2025
3.3.781 223 3/17/2025
3.3.778 226 3/17/2025
3.3.773 225 2/17/2025
3.3.770 172 2/17/2025
3.3.765 169 2/17/2025
3.3.758 200 2/10/2025
3.3.755 330 1/21/2025
3.3.752 166 1/20/2025
3.3.749 179 1/20/2025
3.3.742 175 1/20/2025
3.3.730 167 1/17/2025
3.3.727 186 1/14/2025
3.3.724 174 1/14/2025
3.3.716 183 1/13/2025
3.3.709 178 1/6/2025
3.3.706 183 1/6/2025
3.3.701 178 1/6/2025
3.3.694 169 12/30/2024
3.3.691 180 12/23/2024
3.3.688 240 12/9/2024
3.3.685 349 11/25/2024
3.3.682 176 11/25/2024
3.3.677 218 11/18/2024
3.3.674 158 11/18/2024
3.3.669 171 11/18/2024
3.3.662 167 11/18/2024
3.3.653 351 10/28/2024
3.3.650 234 10/14/2024
3.3.647 182 10/14/2024
3.3.644 187 10/3/2024
3.3.641 178 10/3/2024
3.3.636 219 9/23/2024
3.3.633 213 9/16/2024
3.3.630 233 9/9/2024
3.3.627 225 8/27/2024
3.3.619 188 8/27/2024
3.3.614 202 8/27/2024
3.3.609 206 8/27/2024
3.3.602 213 8/26/2024
3.3.592 333 7/15/2024
3.3.589 169 7/15/2024
3.3.584 190 7/11/2024
3.3.574 1,829 5/28/2024
3.3.571 178 5/28/2024
3.3.566 185 5/28/2024
3.3.559 171 5/19/2024
3.3.553 192 4/29/2024
3.3.550 189 4/29/2024
3.3.545 188 4/29/2024
3.3.538 220 4/22/2024
3.3.535 197 4/22/2024
3.3.530 219 4/15/2024
3.3.527 200 4/15/2024
3.3.522 223 4/8/2024
3.3.519 226 3/18/2024
3.3.516 202 3/18/2024
3.3.511 207 2/26/2024
3.3.508 207 2/26/2024
3.3.503 203 2/26/2024
3.3.499 210 2/19/2024
3.3.494 211 2/19/2024
3.3.487 216 2/14/2024
3.3.484 198 2/14/2024
3.3.478 202 2/12/2024
3.3.475 228 1/30/2024
3.3.470 180 1/29/2024
3.3.464 1,811 1/22/2024
3.3.461 198 1/22/2024
3.3.456 241 1/16/2024
3.3.453 200 1/16/2024
3.3.448 239 1/8/2024
3.3.445 234 12/25/2023
3.3.442 219 12/25/2023
3.3.437 237 12/18/2023
3.3.422 247 12/14/2023
3.3.417 263 12/11/2023
3.3.414 217 12/11/2023
3.3.409 237 12/11/2023
3.3.406 246 12/11/2023
3.3.397 215 12/4/2023
3.3.394 215 11/27/2023
3.3.391 235 11/21/2023
3.3.388 213 11/21/2023
3.3.383 202 11/20/2023
3.3.376 202 11/20/2023
3.3.367 186 11/20/2023
3.3.356 201 11/14/2023
3.3.353 197 11/14/2023
3.3.348 182 11/14/2023
3.3.339 187 11/10/2023
3.3.332 212 11/7/2023
3.3.328 197 11/6/2023
3.3.325 250 10/25/2023
3.3.322 217 10/25/2023
3.3.315 221 10/25/2023
3.3.307 188 10/23/2023
3.3.304 240 10/18/2023
3.3.301 201 10/18/2023
3.3.292 203 10/18/2023
3.3.283 251 9/19/2023
3.3.280 205 9/19/2023
3.3.271 223 9/13/2023
3.3.268 262 9/4/2023
3.3.265 888 8/24/2023
3.3.262 300 8/9/2023
3.3.259 293 7/29/2023
3.3.257 264 7/29/2023
3.3.249 250 7/19/2023
3.3.246 279 7/17/2023
3.3.243 277 7/12/2023
3.3.240 254 7/12/2023
3.3.231 537 6/15/2023
3.3.228 272 6/7/2023
3.3.224 397 6/5/2023
3.3.219 440 5/24/2023
3.3.216 273 5/24/2023
3.3.211 300 5/23/2023
3.3.200 320 5/4/2023
3.3.199 575 4/21/2023
3.3.198 366 4/20/2023
3.3.194 334 4/9/2023
3.3.186 331 4/4/2023
3.3.182 346 4/3/2023
3.3.178 335 4/3/2023
3.3.169 376 3/26/2023
3.3.166 394 3/8/2023
3.3.162 381 2/27/2023
3.3.159 459 1/28/2023
3.3.156 435 1/28/2023
3.3.151 467 1/28/2023
3.3.144 429 1/28/2023
3.3.135 438 1/28/2023
3.3.124 479 1/28/2023
3.3.113 460 1/28/2023
3.3.98 457 1/28/2023
3.3.81 473 1/28/2023
3.3.56 441 1/28/2023
3.3.53 455 1/28/2023
3.3.25 424 1/28/2023
3.3.4 433 1/28/2023
3.2.86 9,382 3/10/2022
3.2.59 620 3/2/2022
3.2.52 635 3/2/2022
3.2.43 1,420 1/5/2022
3.2.35 431 1/5/2022
3.2.10 817 6/21/2021
3.1.102 1,079 6/23/2020
3.0.90 728 4/19/2020
3.0.83 717 4/19/2020
3.0.72 694 4/18/2020
3.0.71 718 4/18/2020
3.0.69 684 4/18/2020
3.0.68 703 4/7/2020
3.0.60 753 3/30/2020
3.0.52 696 3/30/2020
3.0.45 764 3/30/2020
2.0.34 827 1/5/2020
2.0.27 759 1/5/2020
2.0.24 767 1/5/2020
1.0.8 788 1/4/2020
1.0.7 778 1/4/2020
1.0.6 1,117 8/18/2018
1.0.5 1,070 8/18/2018
1.0.4 1,072 8/17/2018
1.0.3 1,252 12/18/2017
1.0.2 1,229 12/18/2017
1.0.1 1,228 12/18/2017