Adds N French business days to a date (?start=2026-07-13&add=30) or counts them over a ran
Adds N French business days to a date (?start=2026-07-13&add=30) or counts them over a range (?from=2026-07-01&to=2026-09-30). Skips weekends and the 11 French legal public holidays (movable feasts computed via Butcher-Meeus). mode=ouvres (Mon-Fri, default) or ouvrables (Mon-Sat). Deterministic local computation, JSON.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"add": 30,
"start": "2026-07-13"
},
"type": "http"
},
"output": {
"example": {
"business_days_added": 30,
"calendar_days": 43,
"end_date": "2026-08-25",
"holidays_crossed": [
{
"date": "2026-07-14",
"name": "fete_nationale"
},
{
"date": "2026-08-15",
"name": "assomption"
}
],
"mode": "ouvres",
"source": "Computed locally: French legal holidays (Code du travail L3133-1), Easter via Butcher-Meeus",
"start": "2026-07-13"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"add": {
"description": "Business days to add, 1-366 (default 1)",
"type": "integer"
},
"from": {
"description": "ISO range start (use with to, counting mode)",
"type": "string"
},
"mode": {
"default": "ouvres",
"enum": [
"ouvres",
"ouvrables"
],
"type": "string"
},
"start": {
"description": "ISO date to add business days to (use with add)",
"type": "string"
},
"to": {
"description": "ISO range end (inclusive)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/fr/business-days" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/fr/business-days");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/fr/business-days")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3981.json, and this resource appears in /discovery/resources and /discovery/search.