v1
latestOpenAPI 3.1.02026-07-24398280.9 KBBaseline forecasts
Get activity projections
Retrieves a list of activity projections filtered by baseline scenario ID and optionally by business entity ID. If no business entity ID is provided, the activity projections for the entire organization will be returned. This endpoint supports pagination, since the number of activity projections can be quite large.
get/v1/baseline_forecasts/activity_projections
Query parameters
baseline_scenario_idstring uuid required
The ID of the baseline scenario to filter the activity projections by
business_entity_idstring uuid
The ID of the business entity to filter the activity projections by
offsetinteger
The offset of the activity projections to retrieve
limitinteger
The limit of the activity projections to retrieve
Response
Activity projections retrieved successfully
Example response
{
"projections": [
{
"config": {
"startYear": "2025",
"endYear": "2025",
"valueProjectionMethod": {
"projectionMethod": "HISTORICAL_AVERAGE_GROWTH_RATE",
"baseYear": "2025",
"historicalPeriodStart": "2025",
"historicalPeriodEnd": "2025"
},
"emissionsProjectionMethod": {
"projectionMethod": "HISTORICAL_AVERAGE_GROWTH_RATE",
"baseYear": "2025",
"historicalPeriodStart": "2025",
"historicalPeriodEnd": "2025"
},
"emissionsFactorsOverrides": [
{
"unit": "kg"
}
],
"secondaryActivityValueOverrides": [
{
"unit": "kg"
}
]
},
"projection": {
"startYear": "2025",
"endYear": "2025",
"serverUnit": "kg",
"displayUnit": "kg",
"emissionsUnit": "kg",
"secondaryActivityValues": [
{
"year": "2025"
}
],
"historicalActivityValues": [
{
"year": "2025"
}
],
"projectedActivityValues": [
{
"year": "2025"
}
],
"historicalScopeEmissions": [
{
"year": "2025"
}
],
"projectedScopeEmissions": [
{
"year": "2025"
}
],
"historicalBioCO2Emissions": [
{
"year": "2025"
}
],
"projectedBioCO2Emissions": [
{
"year": "2025"
}
]
}
}
]
}