Calculators
In-person vs virtual meeting CO2 API
Compare CO2e of an in-person meeting (attendees x round-trip travel km x mode factor; flight 0.18, car 0.171, rail 0.041 kg/km) against a virtual meeting (attendees x hours x 0.15 kWh x grid intensity). Returns in-person and virtual kg CO2e, kg saved by going virtual, reduction percent and tree equivalents. Answers 'CO2 of flying 20 people to a meeting','virtual vs in-person conference footprint','emissions saved by going remote','carbon cost of a business trip'.
Price$0.01per request
MethodPOST
Route/v1/calc/carbon-meeting-footprint
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
carbonmeetingtravelvirtualemissionsco2businessfootprint
API URL
Integration docshttps://x402.hexl.dev/v1/calc/carbon-meeting-footprintExample request
{
"attendees": 20,
"avgTravelKm": 200,
"travelMode": "flight",
"meetingHours": 2
}Example response
{
"attendees": 20,
"avgTravelKm": 200,
"travelMode": "flight",
"meetingHours": 2,
"gridKgCO2PerKwh": 0.4,
"inPersonKgCO2e": 1440,
"virtualKgCO2e": 2.4,
"savedByVirtualKgCO2e": 1437.6,
"reductionPercent": 99.83,
"equivalentTrees": 68.46
}Input schema
{
"type": "object",
"required": [
"attendees",
"avgTravelKm"
],
"properties": {
"attendees": {
"type": "number",
"examples": [
20
]
},
"avgTravelKm": {
"type": "number",
"description": "one-way avg travel per attendee",
"examples": [
200
]
},
"travelMode": {
"type": "string",
"enum": [
"flight",
"car",
"carpool",
"bus",
"rail",
"subway",
"motorbike",
"ferry"
],
"default": "car"
},
"meetingHours": {
"type": "number",
"default": 1
},
"gridKgCO2PerKwh": {
"type": "number",
"default": 0.4
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}