How to get same dashboard data instead of API dashboard deprecated as of v.6.2.6

Hi.

I have upgraded Morpheus from v.6.2.0 to v.7.0.1 and now the dashboard API is no longer available because it has been deprecated as of v.6.2.6. Using python in my web application, I am trying to write a new def to get the same data that I was able to get via the dashboard API.

I have been working on single API request to get the partial data and then collect the partial results into one final composing dashboard data.

I cannot understand how to get some partial data since I cannot find their API source.
No problem with instanceStats and provisioning data, but I cannot reach monitoring and logStats data

Here is an example of JSON result of dashboard data:
{'success': True, 'instanceStats': {'maxCpu': 0, 'maxCores': 146, 'cpuUsage': 0, 'cpuUsageAverage': 7.089300682720466, 'cpuUsagePeak': 23.363625, 'usedMemory': 196948420000, 'maxMemory': 420906795008, 'usedStorage': 726962487296, 'maxStorage': 8504035246080, 'running': 27, 'total': 29, 'totalContainers': 39}, 'provisioning': {'instanceCount': 29, 'favoriteInstances': []}, 'monitoring': {'avgHealth': 9.7619047619, 'avgResponseTime': 2.380952381, 'warningApps': 1, 'warningChecks': 0, 'failApps': 1, 'totalApps': 25, 'failChecks': 1, 'successApps': 23, 'mutedApps': 0, 'successChecks': 41, 'totalChecks': 42, 'mutedChecks': 0, 'responseTimes': [2, 0, 2, 2, 1, 1, 0], 'allSuccess': False, 'openIncidents': 4}, 'backups': {'backupStats': {}, 'accountStats': {'totalSizeByDay': [0, 0, 0, 0, 0], 'totalSizeByDay7Days': [0, 0, 0, 0, 0, 0, 0], 'formattedTotalSize': {'value': '0', 'units': 'KB'}, 'backupCount': 0, 'totalSize': 0, 'success': 0, 'failed': 0, 'totalCompleted': 0, 'lastSevenDays': {'failed': 0, 'successful': 0, 'completed': 0}, 'avgSize': 0, 'failedRate': 0, 'successRate': 0, 'nextFireTotal': 0, 'backupDayCount': [0, 0, 0, 0, 0, 0, 0], 'backupDayCountTotal': 0}}, 'activity': [], 'logStats': {'success': True, 'data': [{'key': 'INFO', 'values': {'1736294400000': 0, '1736380800000': 682680, '1736467200000': 677243, '1736553600000': 684128, '1736640000000': 677142, '1736726400000': 681579, '1736812800000': 680450, '1736899200000': 295641}, 'count': 4378863}, {'key': 'ERROR', 'values': {'1736294400000': 0, '1736380800000': 4641, '1736467200000': 4640, '1736553600000': 4715, '1736640000000': 4644, '1736726400000': 4735, '1736812800000': 4655, '1736899200000': 2027}, 'count': 30057}, {'key': 'FATAL', 'values': {'1736294400000': 0, '1736380800000': 2301, '1736467200000': 2299, '1736553600000': 2300, '1736640000000': 2302, '1736726400000': 2300, '1736812800000': 2300, '1736899200000': 1004}, 'count': 14806}, {'key': 'WARN', 'values': {'1736294400000': 0, '1736380800000': 282, '1736467200000': 77, '1736553600000': 2971, '1736640000000': 79, '1736726400000': 826, '1736812800000': 463, '1736899200000': 89}, 'count': 4787}], 'startMs': 1736332140000, 'earliest': 1736294400000, 'endMs': 1736936940000, 'interval': 86400000}}

thanks in advance