Microsoft Products APIs website screenshot

Microsoft Products APIs

Collection of Microsoft product and service APIs spanning Microsoft 365, Azure, Dynamics 365, Power Platform, security, gaming, and more.

10 APIs 0 Features
AzureCloudEnterpriseMicrosoftOffice 365Productivity

APIs

Microsoft Graph API

Unified API endpoint for accessing Microsoft 365, Windows, and Enterprise Mobility + Security services.

Azure REST API

REST APIs for Azure cloud services and resource management.

Office 365 APIs

APIs for Office 365 applications including Outlook, Calendar, Contacts, and Files.

Microsoft Teams API

Build apps and bots for the Microsoft Teams collaboration platform.

OneDrive API

Access files stored in OneDrive and SharePoint.

Power Platform APIs

APIs for Power Apps, Power Automate, and Power BI.

Azure Cognitive Services API

AI and machine learning APIs for vision, speech, language, and decision making.

Dynamics 365 API

APIs for Dynamics 365 CRM and ERP applications.

Microsoft 365 Defender API

Security APIs for threat protection and incident response.

Xbox Live API

APIs for Xbox gaming services and social features.

Collections

Pricing Plans

Rate Limits

Ms Products Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🌐
Portal
Portal
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Microsoft Graph API (v1.0)
  version: 1.0.0
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://login.microsoftonline.com/common/oauth2/v2.0/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Users
    type: folder
  items:
  - info:
      name: List users in the directory
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/users
    docs: List users in the directory
  - info:
      name: Get a user by id or userPrincipalName
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/users/:userId
      params:
      - name: userId
        value: ''
        type: path
        description: User id (object id) or userPrincipalName.
    docs: Get a user by id or userPrincipalName
- info:
    name: Me
    type: folder
  items:
  - info:
      name: Get the profile of the signed-in user
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me
    docs: Get the profile of the signed-in user
- info:
    name: Mail
    type: folder
  items:
  - info:
      name: List the signed-in user's Outlook messages
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/messages
    docs: List the signed-in user's Outlook messages
- info:
    name: Calendar
    type: folder
  items:
  - info:
      name: List the signed-in user's calendar events
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/events
    docs: List the signed-in user's calendar events
  - info:
      name: Get the signed-in user's default calendar
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/me/calendar
    docs: Get the signed-in user's default calendar
- info:
    name: Groups
    type: folder
  items:
  - info:
      name: List groups in the directory
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups
    docs: List groups in the directory
  - info:
      name: Get a group by id
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups/:groupId
      params:
      - name: groupId
        value: ''
        type: path
        description: Group id.
    docs: Get a group by id
  - info:
      name: List members of a group
      type: http
    http:
      method: GET
      url: https://graph.microsoft.com/v1.0/groups/:groupId/members
      params:
      - name: groupId
        value: ''
        type: path
        description: Group id.
    docs: List members of a group
bundled: true