POST
/
v1
/
emissions
/
calculate
/
accommodation
{
    "start_date": "1970-01-01",
    "end_date": "1970-01-01",
    "country_code": "GB",
    "square_meters": 75,
    "number_of_travelers": 1,
    "sauna_included": false,
    "air_conditioning_included": false,
    "swimming_pool_included": false
}
{
    "emissions_in_kg": 1000
}

Headers

api-key
string
required

Authorisation requires an API key in the header of the request. Please see this page for more information.

Request Fields

start_date
string
required

The start date of the traveler’s trip.

Format: yyyy-MM-dd

end_date
string
required

The end date of the traveler’s trip.

Format: yyyy-MM-dd

country_code
string
required

The ISO 3166-1 alpha-2 country code representing the location of the property.

Format: ISO 3166-1 alpha-2

square_meters
number
required

The total square meters of the accommodation.

Minimum Value: 1

number_of_travelers
number
required

The number of travelers included in the booking.

Minimum Value: 1

sauna_included
boolean

Whether or not the property has a sauna.

Default: false

air_conditioning_included
boolean

Whether or not the property has air conditioning.

Default: false

swimming_pool_included
boolean

Whether or not the property has a swimming pool.

Default: false

Response Fields

emissions_in_kg
long

The amount of carbon emissions to be offset, specified in kilograms.

{
    "start_date": "1970-01-01",
    "end_date": "1970-01-01",
    "country_code": "GB",
    "square_meters": 75,
    "number_of_travelers": 1,
    "sauna_included": false,
    "air_conditioning_included": false,
    "swimming_pool_included": false
}
{
    "emissions_in_kg": 1000
}