Carbon, weather & sustainability
Environmental APIs for carbon footprint calculation, weather data, and sustainability metrics.
Calculate carbon footprint for activities. Track emissions from travel, energy usage, and daily activities.
POST /api/v1/environmental/carbon/calculate
{ "activity": "flight",
"distance_km": 1500,
"passengers": 1 }
// Response
{ "co2_kg": 234.5,
"co2_tons": 0.2345,
"equivalent_trees": 11,
"offset_cost_usd": 4.69 }
Get current and forecast weather data. Temperature, precipitation, wind, and severe weather alerts.
GET /api/v1/environmental/weather
?lat=40.7128&lon=-74.0060
// Response
{ "current": {
"temp_c": 22, "temp_f": 72,
"humidity": 65, "wind_kph": 15,
"condition": "Partly cloudy" },
"forecast": [...],
"alerts": [] }
Get air quality index and pollutant data. Monitor PM2.5, PM10, ozone, and other pollutants.
GET /api/v1/environmental/air-quality
?lat=40.7128&lon=-74.0060
// Response
{ "aqi": 42,
"category": "Good",
"pollutants": {
"pm25": 8.5, "pm10": 15.2,
"o3": 28, "no2": 12, "co": 0.4 },
"health_advice": "Safe for outdoor..." }
Calculate and purchase carbon offsets. Support verified carbon reduction projects worldwide.
POST /api/v1/environmental/carbon/offset
{ "co2_tons": 2.5,
"project_type": "reforestation" }
// Response
{ "offset_id": "OFF_abc123",
"co2_offset_tons": 2.5,
"cost_usd": 37.50,
"project": "Amazon Rainforest",
"certificate_url": "https://..." }
Get company ESG ratings and metrics. Environmental, Social, and Governance performance data.
GET /api/v1/environmental/esg
?company=AAPL
// Response
{ "company": "Apple Inc.",
"ticker": "AAPL",
"esg_score": 72,
"environmental": 68,
"social": 75,
"governance": 74,
"rating": "AA",
"industry_rank": 12 }
Get your API key and start using Environmental APIs in minutes.