{ "count": 123, "next": "<string>", "previous": "<string>", "results": [ { "id": 123, "name": "<string>", "description": "<string>", "project_types": [ {} ] } ] }
Retrieve carbon project scope categories
Show Scope properties
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 )
{ "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" } ] } ] }