News
Distribution of French listings including French City Tax
We will introduce a new change to our pricing updates API /v1/updates/pricing
that allows our partners to receive pre-calculated city tax amounts for french listings for each possible stay.
A new field taxRecords
is added under #PricingDto with the following structure:
Each instance has a checkin date as key and an array of possible occupancies and amounts where each amount represents a possible checkout day with the corresponding tax amount to be paid by the guest.
Each individual amount represents the cumulated french city tax amount to be payed per stay.
Note that nothing changes during live booking price checks since we will always check that the final price is valid.
guests
refer here to adults only. Children (age 0-17) don’t have to pay city taxes in France (last update: April 2025)
{
"taxDetails":[
"2025-03-31": [
{
"taxAmount": [
1.60,
3.40,
7.90,
15.20,
22.50
],
"currency": "EUR",
"guests": 1
},
{
"taxAmount": [
3.20,
6.80,
15.80,
30.40,
45.00
],
"currency": "EUR",
"guests": 2
},
{
"taxAmount": [
4.80,
10.20,
23.70,
45.60,
67.50
],
"currency": "EUR",
"guests": 3
}
]
}