← Wissenschaft & Weltraum

CO2-Rechner

GET /carbon/calculate

Berechnen Sie den CO2 emissions (in kg) for a specific activity und amount. Unterstützt activities like flights, driving, electricity usage, und heating. Geben Sie an: the activity type und amount (e.g., kilometers driven, kWh consumed). Liefert die total CO2 equivalent. Nützlich für personal CO2-Fußabdruck trackers, corporate sustainability reporting tools, und environmental awareness apps that help users understand their impact.

Parameter

activity erforderlich

Activity type

amount erforderlich

Amount

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=flight_long&amount=5000"
CO2 from a long-haul flight (5000 km)
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=flight_long&amount=5000"
CO2 from driving 100 km
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=driving&amount=100"
CO2 from 500 kWh electricity
curl "https://nordapi.ee/api/v1/carbon/calculate?activity=electricity&amount=500"

Live-Antwort

{
  "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
}