Offset Your Carbon Footprint in Real Time
Cloverly's powerful API calculates the impact of common carbon-intensive activities in real time and uses verified, quality carbon offset projects to neutralize them. Ready to get started? Create an account to integrate the Cloverly API for free, or contact us for custom solutions.
Connecting the Carbon Offset Infrastructure for a More Sustainable World
Businesses and consumers count on Cloverly to offset their carbon footprint and create positive environmental change based on real-time business activities. Whether you implement our ready-to-use applications or install our API as part of a custom integration, Cloverly can help you go greener, faster.
Matching the Offset
The Cloverly API can find and match the best offset per transaction. If your customer orders a product in California, for example, we might partner with an improved forest management project in California to keep the benefit local.
Transaction Transparency
We believe in transparency and fully validated transactions. That's why every time you (or your customers) choose to offset an emission-producing activity with Cloverly, we provide real-time transactional data to show the location, type, and amount of carbon offset.
Verified Sources
To effectively neutralize carbon emissions, we know that quality matters. That's why Cloverly works with reputable, internationally recognized suppliers who track and verify registered carbon offset projects.
Use Cases
Used in Every Environment, to Save the Environment
There are many sources of carbon emissions, including some that we don't typically associate with environmental impacts. For example, even cloud computing requires physical servers powered by electricity. Below are a few common use cases for carbon offsetting.
Ecommerce
See how Cloverly partners are offsetting ecommerce shipments through Shopify, BigCommerce, Magento, and custom integrations.
Learn more
Rideshare
Miles traveled and carbon emitted can be easily calculated and offset in real time with Cloverly.
Learn moreFlights
Take off the carbon impact of aviation. With the Cloverly API, calculate and offset miles flown and impact generated.
Learn moreEnterprise Resource Planning
Learn how enterprise software companies are using the Cloverly integration to offset their environmental effects.
Learn moreEnergy
Find out how the energy industry is using carbon offsets to make a difference and create a more sustainable world.
Learn moreSupply Chain
Calculate offsets based on your supply chain, make a difference, and see how others are doing it, too.
Learn moreFintech
Cloverly can help identify carbon footprints based on financial transaction data and purchase the offsets needed to mitigate these effects.
Learn moreFleet
You track mileage and fuel economy for your vehicle fleet. So you already have the data the Cloverly API needs to calculate and offset the carbon impact.
Learn moreDon't See Your Industry?
Cloverly can accommodate a variety of use cases for many different carbon-producing activities. Even if you don't see your industry here or you're not sure what activities to offset, we can help. Reach out to Cloverly and let us get you on the path to net-zero carbon emissions.
Simple Integration.
RESTful API.
The Cloverly API calculates and offsets carbon emissions on a per-transaction basis. We can determine the amount of carbon emitted and offset that quantity by purchasing carbon offsets in real time. Explore our developer docs to find the right endpoints for your application, and sign up for free to get the Cloverly sandbox keys.
- curl https://api.cloverly.com/2019-03-beta/purchases/vehicle \
- -X POST \
- -d '{"distance":{"value":55,"units":"km","fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}' \
- -H "Content-type: application/json" \
- -H "Authorization: Bearer public_key:47800ea0ee541b4c"
- require 'faraday'
- conn = Faraday.new(:url => 'https://api.cloverly.com')
- conn.post do |req|
- req.url '/2019-03-beta/purchases/vehicle'
- req.body = '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}'
- req.headers['Content-Type'] = 'application/json'
- req.headers['Authorization'] = 'Bearer public_key:47800ea0ee541b4c'
- end
- const request = require('request');
- const options = {
- method: 'post',
- url: 'https://api.cloverly.com/2019-03-beta/purchases/vehicle',
- body: JSON.stringify({"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}),
- headers: {
- 'Content-type': 'application/json',
- 'Authorization': 'Bearer public_key:47800ea0ee541b4c'
- }
- },
- request(options, function(error, response, body) {
- console.log(body);
- });
- package main
- import "net/http"
- import "io/ioutil"
- import "fmt"
- import "bytes"
- func main() {
- client := &http.Client{}
- var requestData = []byte(`{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}`)
- req, _ := http.NewRequest("POST", "https://api.cloverly.com/2019-03-beta/purchases/vehicle", bytes.NewBuffer(requestData))
- req.Header.Add("Content-type", "application/json")
- req.Header.Add("Authorization", "Bearer public_key:47800ea0ee541b4c")
- resp, _ := client.Do(req)
- defer resp.Body.Close()
- body, _ := ioutil.ReadAll(resp.Body)
- fmt.Printf(string(body[:]))
- }
- import requests
- url = 'https://api.cloverly.com/2019-03-beta/purchases/vehicle'
- headers = {'Content-type': 'application/json', 'Authorization': 'Bearer public_key:47800ea0ee541b4c'}
- data = '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}'
- r = requests.post(url, headers=headers, data=data)
- print(r.text)
- <?php
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, "https://api.cloverly.com/2019-03-beta/purchases/vehicle");
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}');
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json', 'Authorization: Bearer public_key:47800ea0ee541b4c'));
- $r = curl_exec($ch);
- curl_close($ch);
- echo $r;

At the JOIN data conference, the team from Looker (now part of Google) used data provided by attendees to determine the carbon footprint of their travel to the conference and offset it with Cloverly.