Hello @박현우 ,
Thank you for reaching out to the Microsoft Q&A platform. Happy to answer your question.
It appears you have used the very first GET api from the document, which will only list all of the virtual machines in the specified resource group with limited properties.
You have used this
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines?api-version=2022-08-01
I get the same results for the above as you
You should use this VirtualMachines_List_MaximumSet_Gen api to get the details such as vCPUsAvailable, vCPUsPerCores etc
Note: You could use any api tool like Postman API tool for running the azure rest apis, for details on how to use Azure REST APIs with Postman see the below link
https://microsoft.github.io/AzureTipsAndTricks/blog/tip223.html
Hope this helps!
Please "Accept as Answer" and Upvote if the answer provided is useful, so that you can help others in the community looking for remediation for similar issues.