Product

Our Climate-Action-as-a-Service platform connects the carbon credit infrastructure to businesses, consumers, and organizations for direct contribution to carbon removal, powered by the Cloverly API.

Use Cases

Every industry has a carbon footprint. Offset yours with the Cloverly API and get on the path to net-zero emissions.

Not sure where to begin?
Contact us and we'll help you make a sustainability plan with Cloverly.

Developer Resources

Find all the resources you need to start your climate-positive journey.

About

Cloverly is on a mission to neutralize emissions through carbon removals and offsets. We make it easy to make a difference for people and the planet.

Technology Infrastructure for Carbon Markets

Mobilize Climate Action for the Planet

Cloverly builds technology solutions to make the widest selection of the best high-quality carbon removal projects accessible to everyone. Ready to get started? Create an account to access the Cloverly marketplace or use our powerful API to integrate carbon credits into your product.

Request Access Got Questions? Let’s Talk
How It Works

Make Every Business Climate-Positive

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.

A pin on a map indicating Cloverly's ability to match a carbon credit to a relevant, verified carbon credit project.
Access to the Best Carbon Removals

You can use the Cloverly API and marketplace to find the best carbon credit for every need, whether you want to neutralize your residual emissions or make a transaction carbon-neutral. You can choose your carbon removal project based on project quality, social impact or type.

A magnifying glass representing the transparency of Clovelry's carbon offsets through real-time transactional data.
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.

forest-89x100
Verified Quality

To remove carbon permanently, we know that quality matters. Cloverly uses its proprietary quality evaluation developed by climate scientists and works with reputable, internationally recognized organizations that track and verify registered carbon credits.

Use Cases

Used in Every Environment, to Save the Environment

Every industry needs to decarbonize rapidly to achieve the Paris Agreement goal of keeping global warming under 1.5 degrees C. Cloverly's technology is a flexible solution for all industries to invest in high-quality carbon credits both within and beyond their value chains. Below are a few common industries where positive climate action can be scaled using carbon removals and offsets.

Carbon Credits for ESG and Carbon Accounting
ESG & Carbon Accounting

Make every business carbon neutral. Explore how our carbon removal marketplace complements carbon accounting and ESG assessments.

Learn more
carbon neutral at checkout
Ecommerce

See how our carbon neutral and net-zero partners are offsetting ecommerce shipments through Shopify, BigCommerce, and custom integrations.

Learn more
Coins on top of a bank, showing how Cloverly helps to make financial transactions carbon neutral.
Fintech

Cloverly can help make financial transactions carbon neutral and purchase the carbon credits needed to mitigate these effects.

Learn more
A cargo ship leaving port, serving as a symbol of Cloverly offsetting carbon costs from fleet transportation.
Fleet

You track mileage and fuel economy for your vehicle fleet. So you already have the data the Cloverly API needs to calculate and neutralize the carbon impact.

Learn more
A plane flying over buildings showing Cloverly's ability to offset the carbon costs of aviation and flights.
Flights

Address the carbon impact of aviation. With the Cloverly API, remove the carbon for the miles flown and the impact generated.

Learn more
An image of a company's supply chain, showing how Cloverly can help offset carbon emissions from organizational logistics.
Supply Chain

Integrate carbon removals in different parts of your supply chain to reduce the impact even before your product hits the shelf.

Learn more

Don'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. 

Contact Us
For Developers, By Developers

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.

Get API Keys
Developer Docs
  1. curl https://api.cloverly.com/2019-03-beta/purchases/vehicle \
  2. -X POST \
  3. -d '{"distance":{"value":55,"units":"km","fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}' \
  4. -H "Content-type: application/json" \
  5. -H "Authorization: Bearer public_key:47800ea0ee541b4c"
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  1. require 'faraday'
  2. conn = Faraday.new(:url => 'https://api.cloverly.com')
  3. conn.post do |req|
  4.   req.url '/2019-03-beta/purchases/vehicle'
  5.   req.body = '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}'
  6.   req.headers['Content-Type'] = 'application/json'
  7.   req.headers['Authorization'] = 'Bearer public_key:47800ea0ee541b4c'
  8. end
  9.  
  10.  
  11.  
  1. const request = require('request');
  2. const options = {
  3.     method: 'post',
  4.     url: 'https://api.cloverly.com/2019-03-beta/purchases/vehicle',
  5.     body: JSON.stringify({"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}),
  6.   headers: {
  7.     'Content-type': 'application/json',
  8.     'Authorization': 'Bearer public_key:47800ea0ee541b4c'
  9.   }
  10. },
  11. request(options, function(error, response, body) {
  12.   console.log(body);
  13. });
  1. package main
  2. import "net/http"
  3. import "io/ioutil"
  4. import "fmt"
  5. import "bytes"
  6. func main() {
  7.   client := &http.Client{}
  8.   var requestData = []byte(`{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}`)
  9.   req, _ := http.NewRequest("POST", "https://api.cloverly.com/2019-03-beta/purchases/vehicle", bytes.NewBuffer(requestData))
  10.   req.Header.Add("Content-type", "application/json")
  11.   req.Header.Add("Authorization", "Bearer public_key:47800ea0ee541b4c")
  12.   resp, _ := client.Do(req)
  13.   defer resp.Body.Close()
  14.   body, _ := ioutil.ReadAll(resp.Body)
  15.   fmt.Printf(string(body[:]))
  16. }
  1. import requests
  2. url = 'https://api.cloverly.com/2019-03-beta/purchases/vehicle'
  3. headers = {'Content-type': 'application/json', 'Authorization': 'Bearer public_key:47800ea0ee541b4c'}
  4. data = '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}'
  5. r = requests.post(url, headers=headers, data=data)
  6. print(r.text)
  7.  
  8.  
  9.  
  10.  
  11.  
  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, "https://api.cloverly.com/2019-03-beta/purchases/vehicle");
  4. curl_setopt($ch, CURLOPT_POST, 1);
  5. curl_setopt($ch, CURLOPT_POSTFIELDS, '{"distance":{"value":55,"units":"km"},"fuel_efficiency":{"value":25,"units":"mpg","of":"gasoline"}}');
  6. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json', 'Authorization: Bearer public_key:47800ea0ee541b4c'));
  7. $r = curl_exec($ch);
  8. curl_close($ch);
  9. echo $r;
  10.  
  11.  
Cloverly Blog

The Latest in the World of Sustainability

31 May 2023
Carbon Removal in the Voluntary Carbon Market: Scaling Climate Action

A   s the global climate crisis continues to escalate, the need for effective solutions to mitigate greenhouse gas emissions has become more urgent than ever. The voluntary carbon market (VCM), where...

Learn More
9 May 2023
Cloverly Partner Therm Wins American Carbon Registry Award

T he climate change conversation tends to focus on carbon emissions, reductions, and removals. So, it’s easy to forget that other greenhouse gases (GHGs) have a much larger warming potential than...

Learn More