Calculators
Household waste CO2 footprint API
Compute landfill CO2e (largely methane) from municipal waste streams using EPA-derived factors (kg CO2e/kg): food 2.53, paper 1.04, textile 1.1, yard 0.58, mixed 0.7, plastic 0.04, glass/metal 0.02. Annualized from a weekly or yearly period. Returns a per-stream breakdown, total and annual kg/tonnes CO2e and tree equivalents. Answers 'CO2 of my weekly trash','landfill emissions from food waste','annual waste footprint','methane from household garbage'.
Price$0.01per request
MethodPOST
Route/v1/calc/carbon-waste-footprint
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
carbonwastelandfillemissionsco2methanefootprinthousehold
API URL
Integration docshttps://x402.hexl.dev/v1/calc/carbon-waste-footprintExample request
{
"waste": {
"food": 5,
"plastic": 2
}
}Example response
{
"period": "week",
"breakdown": [
{
"stream": "food",
"kg": 5,
"kgCO2e": 12.65
},
{
"stream": "plastic",
"kg": 2,
"kgCO2e": 0.08
}
],
"totalKgCO2e": 12.73,
"annualKgCO2e": 661.96,
"annualTonnesCO2e": 0.662,
"equivalentTrees": 31.52
}Input schema
{
"type": "object",
"required": [
"waste"
],
"properties": {
"waste": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "stream -> kg; streams: food,paper,plastic,glass,metal,textile,yard,mixed",
"examples": [
{
"food": 5,
"plastic": 2
}
]
},
"period": {
"type": "string",
"enum": [
"week",
"year"
],
"default": "week"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}