GET /carbon/calculate
Reiknaðu the CO2 emissions (in kg) for a specific activity and amount. Styður activities like flights, driving, electricity usage, and heating. Gefðu upp the activity type and amount (t.d. kilometers driven, kWh consumed). Skilar total CO2 equivalent. Gagnlegt fyrir personal kolefnisspor trackers, corporate sustainability reporting verkfæri, and environmental awareness forrit that help users understand their impact.
activity
nauðsynlegt
Activity type
amount
nauðsynlegt
Amount
| Nafn | Nauðsynlegt | Sjálfgefið | Lýsing |
|---|---|---|---|
activity |
Já | - | Activity type |
amount |
Já | - | Amount |
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=flight_long&amount=5000"
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=flight_long&amount=5000"
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=driving&amount=100"
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=electricity&amount=500"
{
"data": {
"activity": "flight_long",
"amount": 5.0e3,
"co2_kg": 975.0,
"co2_tonnes": 0.975,
"equivalent_driving_km": 5078.1,
"equivalent_trees_year": 44.79,
"name": "Long-haul flight (per km per passenger)",
"unit": "km"
},
"success": true
}