API-first Marketplace for Carbon Removals
Our API for carbon removals is the infrastructure for meaningful climate action. For every type of transaction, from payments to travel to shipping, our platform helps you build sustainable products for your customers. Simple and fast.




Make Every Product Carbon Neutral
Cloverly's powerful API matches every digital transaction to an equivalent high-quality carbon removal, making the transaction carbon neutral in real-time. Ready to get started? Create an account to integrate the Cloverly API for free or get access to our platform.
Infrastructure for the Voluntary Carbon Markets for a Sustainable World
Businesses and consumers leverage Cloverly to create positive environmental change by removing the carbon generated by business activities. Whether you integrate our API into your product or choose to buy from our platform directly, Cloverly can help you go greener, faster.
Matching the Removal
The Cloverly API can find and match the best carbon credit for every transaction. You could choose your carbon removal project based on proximity, social impact or project type.
Transaction Transparency
We believe in transparency and visibility of impact. That's why every time you (or your customers) choose to make an activity carbon neutral with Cloverly, we provide a unique transaction receipt that helps you visualize the impact you are having.
Verified Sources
To make carbon removal truly permanent, we know that quality matters. That's why Cloverly works with reputable, internationally recognized suppliers who track and verify registered carbon credit 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 our carbon neutral and net-zero partners are offsetting ecommerce shipments through Shopify, BigCommerce, and custom integrations.
Learn more
Rideshare
Miles traveled and carbon emitted can be easily calculated and offset in real-time with our carbon management software and service
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 our carbon management API service 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 carbon 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 matches carbon emissions with high-quality carbon removals on a per-transaction basis. We can purchase the exact amount of carbon removals 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;