BigPanda website screenshot

BigPanda

BigPanda is a software platform that uses artificial intelligence (AI) to help IT operations teams automate incident management by correlating alerts from various systems, identifying root causes, and streamlining the incident resolution process, essentially moving from reactive to proactive incident response by providing context and insights through intelligent data analysis.

1 APIs 8 Features
IncidentsMonitoringPlatform

APIs

BigPanda

Use the Environments API to define incident groups based on incident properties such as source, severity, or alert data.

Collections

Pricing Plans

Bigpanda Plans Pricing

3 plans

PLANS

Rate Limits

Bigpanda Rate Limits

5 limits

RATE LIMITS

FinOps

Features

AI Alert Correlation

ML-powered correlation of alerts from 200+ monitoring tools into actionable incidents.

Incident Management

Triage, acknowledge, and resolve correlated incidents with full audit trail.

Root Cause Analysis

Automatically identify root causes by correlating alerts with change events.

Maintenance Plans

Schedule maintenance windows to suppress expected alerts during planned work.

Change Correlation

Ingest deployment and config changes to correlate with alert spikes.

Environments

Define DSL-based environments to group incidents by source, severity, or host.

Enrichments

Enrich alerts with contextual tags from CMDB and other data sources.

AIOps Automation

Automate incident response workflows with AI-driven insights and routing.

Use Cases

Alert Noise Reduction

Reduce alert fatigue by correlating thousands of alerts into a handful of incidents.

Change Impact Analysis

Automatically link deployment changes to alert spikes for faster root cause identification.

On-Call Automation

Route correlated incidents to the right on-call team with full context.

Maintenance Scheduling

Suppress alerts during planned maintenance to prevent false incident creation.

ITSM Integration

Automatically create and update tickets in ServiceNow or Jira from correlated incidents.

Semantic Vocabularies

Bigpanda Context

6 classes · 19 properties

JSON-LD

API Governance Rules

BigPanda API Rules

23 rules · 8 errors 15 warnings

SPECTRAL

JSON Structure

Bigpanda Alert Request Structure

6 properties

JSON STRUCTURE

Bigpanda Alert Response Structure

2 properties

JSON STRUCTURE

Bigpanda Audit Log Entry Structure

4 properties

JSON STRUCTURE

Bigpanda Audit Logs Response Structure

1 properties

JSON STRUCTURE

Bigpanda Change Request Structure

5 properties

JSON STRUCTURE

Bigpanda Change Response Structure

2 properties

JSON STRUCTURE

Bigpanda Environment Request Structure

3 properties

JSON STRUCTURE

Bigpanda Environment Structure

4 properties

JSON STRUCTURE

Bigpanda Environments Response Structure

1 properties

JSON STRUCTURE

Bigpanda Incident Structure

6 properties

JSON STRUCTURE

Bigpanda Incidents Response Structure

1 properties

JSON STRUCTURE

Bigpanda Maintenance Plan Request Structure

4 properties

JSON STRUCTURE

Bigpanda Maintenance Plan Structure

5 properties

JSON STRUCTURE

Bigpanda Maintenance Plans Response Structure

1 properties

JSON STRUCTURE

Example Payloads

Bigpanda Environment Example

4 fields

EXAMPLE

Bigpanda Incident Example

6 fields

EXAMPLE

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🌐
Portal
Portal
🚀
GettingStarted
GettingStarted
🔗
Documentation
Documentation
📄
ChangeLog
ChangeLog
🔗
PostmanWorkspace
PostmanWorkspace
🟢
StatusPage
StatusPage
🔗
SpectralRules
SpectralRules
🔗
Vocabulary
Vocabulary
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: BigPanda API
  version: v2
items:
- info:
    name: Alerts
    type: folder
  items:
  - info:
      name: BigPanda Send Alert
      type: http
    http:
      method: POST
      url: https://api.bigpanda.io/data/v2/alerts
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Ingests a monitoring alert into BigPanda for correlation and incident management.
- info:
    name: Environments
    type: folder
  items:
  - info:
      name: BigPanda List Environments
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/environments
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns a list of all BigPanda environments.
  - info:
      name: BigPanda Create Environment
      type: http
    http:
      method: POST
      url: https://api.bigpanda.io/resources/v2.0/environments
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Creates a new incident grouping environment.
  - info:
      name: BigPanda Get Environment
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/environments/:id
      params:
      - name: id
        value: env-abc123
        type: path
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns a single environment by ID.
  - info:
      name: BigPanda Delete Environment
      type: http
    http:
      method: DELETE
      url: https://api.bigpanda.io/resources/v2.0/environments/:id
      params:
      - name: id
        value: env-abc123
        type: path
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Deletes an environment by ID.
- info:
    name: Incidents
    type: folder
  items:
  - info:
      name: BigPanda List Incidents
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/environments/:environment_id/incidents
      params:
      - name: environment_id
        value: env-abc123
        type: path
      - name: active
        value: ''
        type: query
        description: Filter by active incidents.
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns a list of incidents for the specified environment.
  - info:
      name: BigPanda Get Incident
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/environments/:environment_id/incidents/:incident_id
      params:
      - name: environment_id
        value: env-abc123
        type: path
      - name: incident_id
        value: inc-abc123
        type: path
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns details for a single incident.
- info:
    name: Maintenance Plans
    type: folder
  items:
  - info:
      name: BigPanda List Maintenance Plans
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/maintenance-plans
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns all maintenance plans.
  - info:
      name: BigPanda Create Maintenance Plan
      type: http
    http:
      method: POST
      url: https://api.bigpanda.io/resources/v2.0/maintenance-plans
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Creates a new maintenance plan to suppress alerts during a window.
- info:
    name: Changes
    type: folder
  items:
  - info:
      name: BigPanda Send Change
      type: http
    http:
      method: POST
      url: https://api.bigpanda.io/data/changes
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Ingests a change event (deployment, config change) for alert correlation.
- info:
    name: Audit
    type: folder
  items:
  - info:
      name: BigPanda Get Audit Logs
      type: http
    http:
      method: GET
      url: https://api.bigpanda.io/resources/v2.0/audit/logs
      params:
      - name: from
        value: ''
        type: query
        description: Start timestamp for log query.
      - name: to
        value: ''
        type: query
        description: End timestamp for log query.
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns audit log entries for API and user activity.
bundled: true