Hi @wesleydenaro,
I have just checked and there is already an option to see scenario operations in the out of the box dashboard, and you can check per day, week or month

I have checked the network tab and this is how you can get this information
https://app-eu.workfrontfusion.com/api/v2/operations/organization/ORG_ID/team/TEAM_ID?groupBy=scenar...
maybe you can also adapt the dates to your need so you get operations for a full month
This is an example of the response
{
"timestamp": "Wed, 26 Nov 2025 11:00:12 GMT",
"data": [
{
"_id": "2025-11-20T00:00:00.000Z",
"scenario": [
{
"id": SCENARIO_ID1,
"operations": 2
}
]
},
{
"_id": "2025-11-25T00:00:00.000Z",
"scenario": [
{
"id": SCENARIO_ID2,
"operations": 4
}
]
}
]
}
Hopefully this helps.
Best regards,
Ivan