Scopes API
Access information about high-level categorization of carbon offset projects.
Authorizations
API key for authentication.
Endpoint
Get All Scopes
Page number for pagination
Number of results per page (max: 100)
Response
URL for next page of results
URL for previous page of results
List of project types within this scope
Example Request
import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY'
}
# Get all scopes
response = requests.get(
'https://api.carbonapi.com/scopes',
headers=headers
)
# Get specific scope
params = {
'name': 'Forestry',
'page_size': 50
}
response = requests.get(
'https://api.carbonapi.com/scopes',
headers=headers,
params=params
)
Example Response
{
"count": 8,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"name": "Forestry and Land Use",
"description": "Projects related to forest conservation, reforestation, and land management",
"project_types": [
{
"id": 1,
"name": "REDD+",
"description": "Reducing emissions from deforestation and forest degradation"
},
{
"id": 2,
"name": "Afforestation/Reforestation",
"description": "Establishment of forest on previously unforested land"
}
]
}
]
}