Catalog/carbon-recycling-impact

Calculators

Recycling CO2 impact calculator API

Compute CO2e avoided by recycling vs landfill per material using EPA WARM factors (kg CO2e avoided/kg): aluminum 9.13, steel 1.79, glass 0.31, paper 0.46, cardboard 0.36, plastic 1.02, PET 1.13. Returns a per-material breakdown, total kg/tonnes CO2e avoided and tree equivalents. Answers 'CO2 saved by recycling aluminum','impact of recycling 5kg of cans','emissions avoided vs landfill','which material saves most by recycling'.

Price$0.01per request
MethodPOST
Route/v1/calc/carbon-recycling-impact
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
carbonrecyclingwasteemissionsco2warmcircularsustainability
API URLhttps://x402.hexl.dev/v1/calc/carbon-recycling-impact
Integration docs
Example request
{
  "materials": {
    "aluminum": 5,
    "plastic": 2
  }
}
Example response
{
  "breakdown": [
    {
      "material": "aluminum",
      "kg": 5,
      "kgCO2eAvoided": 45.65
    },
    {
      "material": "plastic",
      "kg": 2,
      "kgCO2eAvoided": 2.04
    }
  ],
  "totalKgCO2eAvoided": 47.69,
  "totalTonnesCO2eAvoided": 0.048,
  "equivalentTrees": 2.27
}
Input schema
{
  "type": "object",
  "required": [
    "materials"
  ],
  "properties": {
    "materials": {
      "type": "object",
      "additionalProperties": {
        "type": "number"
      },
      "description": "material -> kg; materials: aluminum,steel,glass,paper,cardboard,plastic,pet",
      "examples": [
        {
          "aluminum": 5,
          "plastic": 2
        }
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}