1ClickImpact
GUIDESMay 29, 2026

Cloverly API Migration Guide for Developers (2026) — Switch to 1ClickImpact

Step-by-step guide to migrating from Cloverly to 1ClickImpact. Replace one endpoint, get 4 impact categories, TypeScript & Python SDKs, GPS verification, and go live in under an hour.

12 min read
Share:
4-in-1
Impact categories in one API
Trees, Carbon, Ocean, Donate
<50ms
Average API response time
Fastest in market
<1hr
Average migration time
Most teams finish in minutes
GPS
Verified proof of impact
Photos, live planting & dashboards

TL;DR

Cloverly's API is winding down. This guide walks you through migrating to 1ClickImpact step by step — from authentication to going live. You get 4 impact categories instead of 1, responses in under 50ms, official TypeScript and Python SDKs, and GPS-verified proof your customers can actually see. Most teams complete the migration in under an hour.

What Happened to Cloverly?

Cloverly was one of the first platforms to offer a developer-friendly carbon offset API. They made it easy for ecommerce stores, SaaS products, and fintech apps to embed carbon offsetting in a few lines of code.

But Cloverly has shifted away from being an actively maintained e-commerce carbon offset API. Search queries for "cloverly migration" and "cloverly alternative" have been growing steadily — a clear signal that teams are looking for a reliable replacement.

If your integration depends on Cloverly, now is the time to migrate. The good news: the switch is faster and simpler than you might expect, and you get significantly more capabilities on the other side.

Why Teams Are Moving

1
Impact type (offsets only)
0
Official SDKs
0
Customer dashboards
?
Long-term API reliability

Why 1ClickImpact Is the Natural Next Step

Where Cloverly offered a single impact type — abstract carbon offsets — 1ClickImpact gives you 4 distinct, verifiable impact categories through one API. Instead of buying credits that are hard to explain to customers, you fund tangible actions they can see and share.

A 2023 NYU Stern study found that products with tangible sustainability claims grew 2.7x faster than those with abstract environmental marketing. Customers want to see real trees, real ocean cleanup, real proof — not receipts for invisible credits.

Plant Trees

Plant Trees

$0.40 / tree

GPS-verified tree planting across reforestation projects worldwide. Choose regular or food trees with live planting sessions.

Capture Carbon

Capture Carbon

$0.40 / lb

Verified carbon capture through biochar production and enhanced rock weathering. Every pound of CO₂ is physically removed and permanently sequestered.

Clean Ocean

Clean Ocean

$0.60 / lb

Remove ocean-bound plastic waste before it reaches the sea. Every pound of waste removed is logged and verifiable through your dashboard.

Donate Money

Donate Money

Flexible amounts

Direct charitable giving through a single API call. Support environmental and social causes with full transparency.

Migration Guide — Step by Step

This is the core of the migration. Follow these 7 steps and you will be live on 1ClickImpact with more capabilities than Cloverly ever offered.

1

Create Your Account & Get API Keys

Sign up at 1clickimpact.com. Your API key is available immediately in the dashboard. You get two environments:

Production
api.1clickimpact.com
Sandbox (free testing)
sandbox.1clickimpact.com
2

Install the SDK (Optional)

Official SDKs are available for Node.js/TypeScript and Python. Or use the REST API directly — no SDK required.

Node.js / TypeScript
npm install makeimpact
Python
pip install makeimpact
3

Replace Your Cloverly Endpoints

Here is a direct mapping from Cloverly's API to 1ClickImpact. The key differences: separate endpoints per impact type, simpler auth, and a full sandbox.

Action

Cloverly

1ClickImpact

Create offset or impactPOST /purchasesPOST /v1/plant_tree (or /v1/capture_carbon, /v1/clean_ocean)
Retrieve recordsGET /purchases/:idGET /v1/records
Customer recordsN/AGET /v1/customer_records
Total impactN/APOST /v1/impact
Cancel impactN/APOST /v1/cancel_impact
View projectsN/AGET /v1/projects
Track impactN/AGET /v1/track
AuthenticationBearer tokenx-api-key header
Base URLapi.cloverly.comapi.1clickimpact.com
SandboxLimitedsandbox.1clickimpact.com
4

Try It in Sandbox

The sandbox is free and mirrors production exactly. Pick an impact category below and try the code — you can copy and paste it directly into your terminal or codebase.

Plant Trees

Plant Trees

POST /v1/plant_tree

Plant GPS-verified trees globally. Choose regular or food trees with live planting sessions.

Plant Food Trees

Plant Food Trees

Add live planting sessions with food-bearing trees.

Capture Carbon

Capture Carbon

POST /v1/capture_carbon

Permanently remove CO₂ via direct air capture, enhanced weathering, and biomass storage.

Clean Ocean

Clean Ocean

POST /v1/clean_ocean

Remove ocean-bound plastic waste before it reaches the sea. Every pound is logged and verified.

Donate Money

Donate Money

POST /v1/donate_money

Enable seamless charitable giving to any cause, charity, or nonprofit.

curl -X POST https://api.1clickimpact.com/v1/plant_tree \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "amount": 5
  }'
5

Update Response Parsing

1ClickImpact returns flat, simple JSON.

Cloverly Response (nested)
{
  "data": {
    "id": "off_abc123",
    "type": "carbon_offset",
    "attributes": {
      "mass_g": 2300,
      "cost": "1.25",
      "currency": "usd"
    }
  }
}
1ClickImpact Response (flat)
{
  "user_id": "U123",
  "tree_planted": 5,
  "category": "food",
  "customer": {
    "customer_id": "U12345",
    "customer_email": "sample-customer@email.com",
    "customer_name": "Sample Customer"
  },
  "time_utc": "2024-09-16T20:34:04.429Z"
}
Full API Documentation

All endpoints, request/response schemas, authentication, and SDK examples

6

Track Impact with /v1/track

Use the /v1/track endpoint to get full lifecycle tracking for any impact action — from initiation to project assignment, certificates, and even live planting sessions:

  • Project location with GPS map embed
  • Assigned agent and project details
  • Shareable impact certificates
  • Live planting session links and dates
  • Full metadata from the original request
Track Impact — cURL
curl --location 'https://api.1clickimpact.com/v1/track?user_id=U1234&time_utc=2025-03-12T15:22:14.753Z' \
  --header 'x-api-key: {PRODUCTION API KEY}'

// Response:
{
  "tracking_id": "U1234-2025-03-12T15:22:14.753Z",
  "impact_initiated": "2025-03-12T15:22:14.753Z",
  "tree_planted": 10,
  "category": "food",
  "donation_available": "2025-03-22T23:44:02.121Z",
  "donation_sent": "2025-03-26T20:11:17.707Z",
  "assigned_agent": "Planting On Demand",
  "project_location": "Rwenzori Mountains, Uganda",
  "project_id": "trees-uganda-di",
  "impact_completed": "2025-04-16T13:00:00.000Z",
  "certificate": "https://1clickimpact.com/certificate/...",
  "impact_video": "https://meet.google.com/...",
  "live_session_date": "2025-04-16T13:00:00.000Z",
  "metadata": {
    "order_id": "ORD-456",
    "source": "shopify"
  }
}
7

Go Live

Swap your sandbox URL (sandbox.1clickimpact.com) for the production URL (api.1clickimpact.com). Real impact starts immediately — every API call plants real trees, captures real carbon, or removes real ocean waste. Monitor via your dashboard or GET /v1/records.

Full API documentation, request/response schemas, and authentication guides are available at docs.1clickimpact.com.

What Your Customers Get (That Cloverly Never Offered)

Cloverly gave you an offset receipt. 1ClickImpact gives your customers a full experience they can see, share, and come back to — with zero extra development work on your part. Learn more about certificates, profiles & dashboards.

Impact Certificates

Every action generates a shareable, branded certificate showing exactly what was done — trees planted with GPS coordinates, carbon captured, or ocean waste removed. Customers can download, print, or share them on social media.

Public Impact Profiles

Each customer gets a public profile page showing their cumulative impact — total trees planted, carbon captured, and ocean waste removed. They can share their profile link anywhere to showcase their environmental commitment.

Tracking Dashboards

Personalized dashboards for both your organization and individual customers. Track impact over time, view GPS locations of planted trees, see photo updates, and monitor your environmental footprint — all automatically generated.

Beyond the API — Ready-Made Integrations

Not every team needs a custom API integration. 1ClickImpact offers ready-made solutions that get you up and running in minutes — no developer time required. You can also use our free Website Carbon Calculator to measure your site's footprint before offsetting it.

Shopify App

Set up in 2 minutes. Automatically plant trees, capture carbon, or clean oceans with every order. No coding required.

Install on Shopify

Zapier Integration

Connect 1ClickImpact to 5,000+ apps with zero code. Trigger impact from form submissions, CRM events, or payment completions.

Connect via Zapier

Climate Action Badge

Embed a smart badge on your website that automatically drives real impact based on your traffic. Every page view counts.

Get the Badge

Ready to migrate from Cloverly?

Join hundreds of businesses using 1ClickImpact to deliver verified, visible environmental impact. 4 categories, GPS proof, from $0.40/action. Most teams migrate in under an hour.

Cloverly Migration FAQs

Cloverly Is Winding Down. Your Impact Does Not Have To.

Switch to 1ClickImpact and get 4 impact categories, GPS-verified proof, customer dashboards, and the lowest price in the market. Most teams are live in under an hour.