Skip to main content

VCM.fyi API

The VCM.fyi API gives you programmatic access to the same carbon market intelligence available in the VCM.fyi web application — covering 11,000+ carbon credit projects across 6 major registries.

What You Can Do

Projects

Search and filter 11,000+ projects from Verra, Gold Standard, CAR, ACR, Isometric, and Puro Earth.

Credits

Query individual credit transactions — issuances, retirements, cancellations — with vintage, date, and beneficiary details.

Forensics

Access AI-generated risk analysis from weekly scanning of 100+ news sources per project.

Countries

Country-level carbon market policy intelligence: Article 6 status, CORSIA eligibility, carbon pricing.

Buyers

Aggregated buyer intelligence from retirement transaction data — volumes, activity patterns, portfolio breakdown.

Proponent Risk

Developer-level due diligence with governance, financial, legal, social, and institutional risk scores.

Satellite

Forest integrity and deforestation metrics from Global Forest Watch for forestry projects.

Charts & Analytics

Pre-aggregated chart data for projects by listing date, credits by transaction date, category breakdowns, and top buyers.

Quick Start

curl -H "X-API-KEY: vcm_live_your_key_here" \
  "https://api.vcm.fyi/v1/projects/?per_page=10"
import requests

API_KEY = "vcm_live_your_key_here"
headers = {"X-API-KEY": API_KEY}

projects = requests.get(
    "https://api.vcm.fyi/v1/projects/",
    headers=headers,
    params={"per_page": 10, "registry": "verra"}
)
print(f"Found {projects.json()['pagination']['total_entries']} Verra projects")

Base URL

https://api.vcm.fyi/v1

Need Help?