Hello @WinTechie !
Azure API Apps and Web Apps are both technically Azure App Services under the hood. The differentiation like "kind" is a matter of how Azure sets up and manages the app, rather than it being a completely separate resource. This is evident when you see that there's no direct PowerShell commandlet for creating an API App.
In fact the API app can deploy any package the same way as other APP Services
So to sum it up , no there is no similar command in Powershell
If you look here :https://learn.microsoft.com/en-us/powershell/module/az.websites/new-azwebapp?view=azps-10.2.0
you can see the supported commands
I agree that the template shows API as kind but the only actual and observable difference is the Premium version
We can re deploy the Template and change the kind to API as well , the same result we will get !
Here is my proof , i deployed the same template :----------->
And then just changed the word api to app in the same template :
Success! Only the icon changes !
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards