Get started with the Carbon Markets API in minutes.
Authorization: Api-Key YOUR_API_KEY
headers = { 'Authorization': 'Api-Key YOUR_API_KEY' }
import requests headers = { 'Authorization': 'Api-Key YOUR_API_KEY' } # Get all projects from a specific registry params = { 'registry': 'verra', 'limit': 100 } response = requests.get( 'https://api.carbonmkts.com/registries', headers=headers, params=params ) registry_data = response.json()