GuidesAccount & Billing

API Tokens

Generate API tokens to access the MonitoringDog API programmatically.

Overview

API tokens allow external scripts, CI/CD pipelines, or third-party tools to authenticate with the MonitoringDog API without using your account credentials.

Types of Tokens

TypeScope
Team API tokenScoped to a single team. Use this for automations that act on behalf of one team.
Global (organization) API tokenScoped to an entire organization. Use this for cross-team operations.

Creating a Team API Token

  1. Go to Settings > API Tokens within a team.
  2. Click Create Token.
  3. Give the token a descriptive name (e.g. ci-pipeline).
  4. Click Generate.
  5. Copy the token immediately — it will not be shown again.

Creating a Global API Token

  1. Open the organization settings.
  2. Go to API Tokens.
  3. Follow the same steps as above.

Using a Token

Include the token in the Authorization header of your API requests:

Authorization: Bearer <your-token>

Revoking a Token

To revoke a token, find it in the token list and click Delete. The token will stop working immediately.