I need to retrieve the list of users from Microsoft Entra by API. I found this manual (https://learn.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http).
There are others way to do that without Microsoft Graph? Microsoft Graph is always included with Microsoft Entra?
The Microsoft Graph API is the recommended and most comprehensive way to interact with data programmatically in Microsoft 365 which includes Microsoft Entra. This includes retrieving users and other directory data including groups, mail, messages, calendars, tasks, and notes, to name a few.To use Microsoft Graph, you have to set up the necessary authentication and permissions depending on the endpoint you are hitting.
Aside from retrieving users using Powershell as mentioned in the comments, you can manually download(as CSV) on the portal under Users but please note that this may take a while for tenants with a large number of users and thus the recommendation is to split the records processed per batch as defined in this documentation.