{ "count": 123, "next": "<string>", "previous": "<string>", "results": [ { "id": 123, "project_id": "<string>", "name": "<string>", "registry_name": "<string>", "project_type_name": "<string>", "reduction_or_removal": "<string>", "methodology": "<string>", "country": "<string>", "region": "<string>", "total_issuance": 123, "total_retirement": 123 } ] }
Retrieve carbon offset project information
Show Project properties
import requests headers = { 'Authorization': 'Bearer YOUR_API_KEY' } # Get all forestry projects in Brazil params = { 'project_type': 'forestry', 'country': 'brazil', 'page_size': 50 } response = requests.get( 'https://api.carbonmkts.com/projects', headers=headers, params=params )