🎮 Graph API Explorer Lite
An interactive, no-auth sandbox to explore popular Microsoft Graph API endpoints. Instantly view required permissions and realistic mock JSON responses.
Endpoint Details
Get the profile of the currently authenticated user.
Required Permissions
Delegated (Work or School Account)
Application (Background Service)
Mock Response Data (JSON)
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users/$entity",
"businessPhones": [
"+1 412 555 0109"
],
"displayName": "Megan Bowen",
"givenName": "Megan",
"jobTitle": "Auditor",
"mail": "MeganB@contoso.OnMicrosoft.com",
"mobilePhone": null,
"officeLocation": "12/1110",
"preferredLanguage": "en-US",
"surname": "Bowen",
"userPrincipalName": "MeganB@contoso.onmicrosoft.com",
"id": "48d31887-5fad-4d73-a9f5-3c356e68a038"
}Frequently Asked Questions
Do I need to sign in?
No! This is a "Lite" mock version designed for quick reference without the hassle of authenticating or setting up an Azure AD app.
Are these real responses?
They are realistic mock responses modeled exactly after the official Microsoft Graph API documentation for v1.0.
Why does it separate Delegated and Application permissions?
When building M365 apps, you either act on behalf of a user (Delegated) or as a background service (Application). It is crucial to request the correct permission type.