Overview
Climatiq is an API for calculating carbon emissions and environmental footprint across a wide range of activities including travel, energy use, and shipping. It provides scientifically-backed emission factors sourced from global databases, making it easy to integrate carbon accounting into any application. Beginners can start calculating CO2 equivalents with a single POST request.
Beginner Tip
You need a free API key from climatiq.io to get started. The main endpoint accepts an activity ID and parameters to return CO2e in kilograms — check the emission factor library in their docs to find the right activity ID for your use case.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Climatiq",
"description": "Calculate the environmental footprint created by a broad range of emission-generating activities",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
co2e The calculated CO2-equivalent emissions in the unit specified by co2e_unit co2e_unit Unit for the CO2e value, typically "kg" for kilograms co2e_calculation_method Methodology used for the calculation, e.g. "ar5" (IPCC Assessment Report 5) emission_factor Details of the emission factor used, including name, category, region, and source database constituent_gases Breakdown of individual greenhouse gases (co2, ch4, n2o) contributing to the total CO2e Implementation Example
const url = "https://docs.climatiq.io/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →BreezoMeter Pollen
BreezoMeter Pollen API (now part of Google Maps Platform) provides daily pollen forecast data including pollen type, index values, and risk levels for a specific geographic location.
Carbon Interface
Carbon Interface API calculates estimated CO2 emissions for common activities such as electricity usage, flights, vehicle travel, and shipping.
Cloverly
Cloverly provides programmatic access to api calculates the impact of common carbon-intensive activities in real time via REST API.
IQAir
⭐ Beginner's PickIQAir API provides real-time air quality index (AQI) data and weather conditions for cities and stations worldwide, powered by the IQAir sensor network.
OpenAQ
⭐ Beginner's PickOpenAQ is an open-source platform providing access to air quality data aggregated from thousands of government and research-grade monitoring stations worldwide.