Main Tools
Last updated
Last updated
Graph Explorer
Web-based testing tool
Quick testing without setup.
Postman
API client for testing and automating APIs
More advanced manual testing.
PowerShell
Scripting with Graph
Admin automation.
Microsoft Graph SDKs
Code libraries for different languages
Building real applications (Python, C#, PowerShell, etc.).
Graph Explorer is the quickest way to test Graph API without writing any code.
Go to 👉
Click Sign In.
Run a query like:
Pre-built sample queries.
Shows API response instantly.
Automatically handles authentication.
Postman is a popular tool for working with APIs. It gives you more control over headers, body data, and authentication.
Download and Install Postman → https://www.postman.com/downloads/
Create a New Request:
Method: GET
URL: https://graph.microsoft.com/v1.0/me
Headers:
Microsoft provides a Microsoft Graph Postman Collection to help you get started faster!
You can also interact with Graph API using PowerShell, which is great for scripting automation.
There now one major module:
Microsoft.Graph
New official Graph SDK for PowerShell (recommended).
Tip: The first time you run it; it will open a login window for permissions!
If you're building applications or automated scripts, using an SDK saves you a ton of work.
C#
Microsoft.Graph
NuGet Package
Python
msgraph-core
and azure-identity
packages
JavaScript/Node.js
@microsoft/microsoft-graph-client
Install the libraries:
Example code:
Graph Explorer is the easiest place to get started quickly.
Postman gives you complete control for testing APIs.
PowerShell lets you automate admin tasks with scripts.
SDKs make it easy to integrate Microsoft Graph into real apps.