@Gianfranco Coppola (MSC Sorrento) Thanks for posting your question in Microsoft Q&A, apologize for any inconvenience caused on this.
Based on the shared information, I understand that you want to list the workflows which are present in the standard logic app.
This Azure Management Rest API Workflows - List By Resource Group is for consumption logic apps not applicable for standard.
Whenever, you provision a standard logic app & workflows it will be deployed inside an app service plan you need to use the Workflow Azure Management Rest API's under the app service rather than using Rest API under Logic Apps to query the standard logic app workflow.
Here is the list of supported Rest API available to query run histories, actions in standard logic app workflows.
Unfortunately, there is no Rest API available to directly list the workflows within standard logic apps.
However, after conducting further investigation using the f12 browser trace, we found the following REST API that can be used to list workflows, and you need to pass bearer token for Authorization header.
https://management.azure.com/subscriptions/{{SubscriptionId}}/resourcegroups/{{ResourceGroup}}/providers/Microsoft.Web/sites/{{LogicAppName}}/hostruntime/runtime/webhooks/workflow/api/management/workflows?api-version=2018-11-01
Here is the sample output for your reference:
Note:
Make sure your service principal or user account from which you are generating the access token is assigned either with Website Contributor or Contributor RBAC role.
Hope this helps, let me know if you have any further questions on this.
Please accept as "Yes" if the answer is helpful so that it can help others in the community.