Integrate verified carbon credits, real-time verification, and sustainability tracking into your applications with our powerful REST API.
99.99% uptime with global edge caching. Average response time under 50ms.
OAuth 2.0 authentication, API key rotation, and rate limiting built-in.
Access carbon projects and verification data from 150+ countries.
Sign up for a free developer account to get your API credentials.
Use our official SDKs for quick integration.
npm install @carbocredit/sdkimport { 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 }https://api.carbocredit.io/v2List all available carbon credits with optional filtering
project_type·stringFilter by project type (reforestation, renewable, etc.)verified·booleanOnly return AI-verified creditsmin_tonnage·numberMinimum CO₂ tonnagelimit·numberResults per page (default: 20, max: 100){
"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
}@carbocredit/sdkcarbocreditgithub.com/carbocredit/go-sdkcarbocreditInclude your API key in the request header:
Authorization: Bearer cc_live_your_api_keycc_test_cc_live_| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 60 | 1,000 |
| Pro | 300 | 50,000 |
| Enterprise | Unlimited | Unlimited |
Get your API key in seconds and start integrating carbon credits into your application.