Certifications API
Access information about project certifications and standards compliance.
Authorizations
API key for authentication.
Endpoint
Get All Certifications
Filter by certification name
Page number for pagination
Number of results per page (max: 100)
Response
Total number of certifications
URL for next page of results
URL for previous page of results
Show Certification properties
Certification description
Name of the certified project
Example Request
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
)
Example Response
{
"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"
}
]
}