Back to Home
DEVELOPER PLATFORM

BUILD WITH
CARBOCREDIT API

Integrate verified carbon credits, real-time verification, and sustainability tracking into your applications with our powerful REST API.

Fast & Reliable

99.99% uptime with global edge caching. Average response time under 50ms.

Secure by Default

OAuth 2.0 authentication, API key rotation, and rate limiting built-in.

Global Coverage

Access carbon projects and verification data from 150+ countries.

QUICK START

1

Get Your API Key

Sign up for a free developer account to get your API credentials.

2

Install the SDK

Use our official SDKs for quick integration.

bash
npm install @carbocredit/sdk
3

Make Your First Request

typescript
import { CarboCredit } from '@carbocredit/sdk';

const client = new CarboCredit({
  apiKey: 'cc_live_your_api_key_here'
});

// Get available carbon credits
const credits = await client.credits.list({
  project_type: 'reforestation',
  verified: true,
  limit: 10
});

console.log(credits);
// { data: [...], total: 1250, page: 1 }

API REFERENCE

v2.1.0REST
Base URL
https://api.carbocredit.io/v2

Credits

4 endpoints

List all available carbon credits with optional filtering

Parameters

project_type·stringFilter by project type (reforestation, renewable, etc.)
verified·booleanOnly return AI-verified credits
min_tonnage·numberMinimum CO₂ tonnage
limit·numberResults per page (default: 20, max: 100)

Response

{
  "data": [
    {
      "id": "cc_1a2b3c4d5e",
      "project_id": "proj_amazon_2026",
      "tonnage": 12.5,
      "price_usd": 24.99,
      "verified": true,
      "verified_at": "2026-01-10T14:30:00Z",
      "ai_confidence": 0.987,
      "coordinates": { "lat": -3.4653, "lng": -62.2159 }
    }
  ],
  "total": 1250,
  "page": 1,
  "per_page": 20
}

Projects

3 endpoints

Wallet

2 endpoints

Webhooks

2 endpoints

OFFICIAL SDKs

JSJavaScript/TypeScript
@carbocredit/sdk
PYPython
carbocredit
GOGo
github.com/carbocredit/go-sdk
RBRuby
carbocredit

Authentication

Include your API key in the request header:

http
Authorization: Bearer cc_live_your_api_key
Test keys start with cc_test_
Live keys start with cc_live_

Rate Limits

PlanRequests/minRequests/day
Free601,000
Pro30050,000
EnterpriseUnlimitedUnlimited

READY TO BUILD?

Get your API key in seconds and start integrating carbon credits into your application.