Hi Vinod,
As Rahul stated, there is nothing available natively.
A suggestion though is to deploy a PowerShell script using Intune:
Use PowerShell scripts on Windows 10/11 devices in Intune
https://learn.microsoft.com/en-us/mem/intune/apps/intune-management-extension
In the PowerShell script you could Invoke or Get-LocalGroupMember for the Administrator group and send that data to a shared server or a POST request.
Invoke-WebRequest (POST)
It would require some custom scripting to get this information, but your POST request could send to a web server in which it translates to a database record. You'd want to send the machine's name, and the members of the Admin group recursively.
If this is helpful please accept answer.