Skip to main content

Welcome to Dcycle

Dcycle helps organizations measure, track, and report their carbon emissions across operations, supply chain, and logistics. Our developer platform provides multiple ways to integrate sustainability data into your workflows.

Three Ways to Integrate

What Can You Build?

Logistics Emissions

Calculate CO2e from shipments following ISO 14083 standards

Fleet Management

Track vehicle consumption and calculate transport emissions

Facility Operations

Monitor emissions from offices, warehouses, and production plants

Invoice Processing

Upload utility bills for automated emissions calculation

Supply Chain

Track emissions from purchases and suppliers

Custom Factors

Define supplier-specific emission factors for accurate tracking

Choose Your Path

I want to build a custom integration

Use the REST API for full programmatic control:
import requests

response = requests.post(
    "https://api.dcycle.io/api/v1/logistics/requests",
    headers={"x-api-key": api_key, "x-organization-id": org_id},
    json={"origin": "Madrid", "destination": "Barcelona", "load": 1000}
)
print(f"Emissions: {response.json()['co2e']} kg CO2e")
Get Started with API →

I want to automate data uploads

Use the CLI for bulk operations and scripting:
# Upload monthly logistics data
dc logistics upload viajes.csv --type requests --yes

# Export fleet data as JSON
dc vehicle list --format json > vehicles.json
Get Started with CLI →

I want AI-assisted analysis

Use the MCP Server with Claude for natural language queries:
User: "What are our total emissions for 2024 by scope?"

Claude: "Your 2024 emissions total 1,234 tCO2e:
- Scope 1: 234 tCO2e (19%)
- Scope 2: 456 tCO2e (37%)
- Scope 3: 544 tCO2e (44%)"
Get Started with MCP →

Key Features

FeatureAPICLIMCP
Real-time calculations-
Bulk data upload-
CI/CD integration-
Natural language queries--
Multi-organization support
JSON/CSV export

Standards & Compliance

  • ISO 14083: Transport emissions calculation
  • GHG Protocol: Corporate carbon accounting (Scope 1, 2, 3)
  • IPCC AR6: Global Warming Potential values
  • 15,000+ emission factors from DEFRA, ADEME, EPA, and more

Base URL

All API requests should be made to:
https://api.dcycle.io

Need Help?

Check our Support & Resources page for troubleshooting, learning resources, and contact information.