{ "count": 123, "next": "<string>", "previous": "<string>", "results": [ { "id": 123, "name": "<string>", "description": "<string>", "project_name": "<string>" } ] }
Retrieve carbon project certification information
Show Certification properties
import requests headers = { 'Authorization': 'Bearer YOUR_API_KEY' } # Get all VCS certifications params = { 'name': 'VCS', 'page_size': 50 } response = requests.get( 'https://api.carbonapi.com/certifications', headers=headers, params=params )
{ "count": 150, "next": "https://api.carbonapi.com/certifications?page=2", "previous": null, "results": [ { "id": 1, "name": "VCS", "description": "Verified Carbon Standard certification", "project_name": "Amazon Forest Conservation Project" }, { "id": 2, "name": "CCB", "description": "Climate, Community & Biodiversity Standards", "project_name": "Amazon Forest Conservation Project" } ] }