Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 804 Bytes

File metadata and controls

43 lines (34 loc) · 804 Bytes

Data samples

https://calendrier.api.gouv.fr/

Zones

[
  "alsace-moselle",
  "guadeloupe",
  "guyane",
  "la-reunion",
  "martinique",
  "mayotte",
  "metropole",
  "nouvelle-caledonie",
  "polynesie-francaise",
  "saint-barthelemy",
  "saint-martin",
  "saint-pierre-et-miquelon",
  "wallis-et-futuna"
]

Fetch holidays for a zone between 2000 and 2025

curl -X 'GET' \
'https://calendrier.api.gouv.fr/jours-feries/metropole.json' \
-H 'accept: application/json'

Fetch holidays for a zone in a year

curl -X 'GET' \
  'https://calendrier.api.gouv.fr/jours-feries/metropole/2025.json' \
  -H 'accept: application/json'