Calculators
Trees needed to offset CO2 API
Compute trees and forest area needed to sequester a CO2e footprint: trees = kg / (kgPerTreePerYear x years), using the EPA estimate of ~21 kg CO2/year sequestered by a mature tree, plus ~1000 trees/hectare. Returns trees needed, forest hectares and acres. Answers 'how many trees to offset 1 tonne of CO2','forest area to neutralize my footprint','trees per tonne CO2','reforestation needed for my emissions'.
Price$0.01per request
MethodPOST
Route/v1/calc/carbon-tree-offset
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
carbontreesoffsetsequestrationforestco2reforestationsustainability
API URL
Integration docshttps://x402.hexl.dev/v1/calc/carbon-tree-offsetExample request
{
"kgCO2e": 1000
}Example response
{
"kgCO2e": 1000,
"tonnesCO2e": 1,
"years": 1,
"kgPerTreePerYear": 21,
"treesNeeded": 48,
"forestHectares": 0.048,
"forestAcres": 0.118
}Input schema
{
"type": "object",
"required": [],
"properties": {
"kgCO2e": {
"type": "number",
"examples": [
1000
]
},
"tonnesCO2e": {
"type": "number"
},
"years": {
"type": "number",
"default": 1
},
"kgPerTreePerYear": {
"type": "number",
"default": 21
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}