SharePoint Online outage on
March 6, 2026

Read more >

Improved SSO setup and
logging

Read more >

StatusGator logo
Schedule a Demo
StatusGator logo
Use cases

IT Teams

Stay informed of outages and reduce tickets

DevOps

One status page for all your providers

Education

Features designed specifically for K12

Enterprise

Advanced features designed for enterprise

Managed service providers

Impress clients with proactive monitoring

Competitive intelligence

Analyze and compare peer performance

Monitor dependencies to prevent revenue loss

Create and manage custom status pages for your product

Features

Status page

A status page with service, website, and custom monitors built-in

Status aggregation

Aggregate the status of all vendors to a single page

Cloud monitoring

Monitor all your cloud services from a single dashboard

Website monitoring

Monitor your website with uptime monitoring built-in

Monitor network connectivity

Control the status of custom monitors manually with incidents

Get notified of disruptions before they become public

Pricing

Business

From startup to enterprise and everything in between

Education

Special plans and discounts for K12 and higher ed

Integrations

Incident Management

Better Uptime
FireHydrant
Opsgenie
PagerDuty

Notifications

Private Status

AT&T status
AWS status
Azure status
Microsoft 365 status
Zendesk status

Status Pages

Atlassian Statuspage
StatusHub

Advanced

Sign In Sign Up

New API: Submit outage reports

We’ve added a new endpoint to the StatusGator API that allows you to submit outage reports for monitors on your board.

With the new Outage Reports API, you can programmatically report issues you’re experiencing with a service. These reports help StatusGator detect outages faster and improve visibility for other users who rely on the same services.

What’s new

You can now create outage reports via the API:

POST /api/v3/boards/{board_id}/outage_reports

This endpoint allows your systems to report issues tied to a specific monitor on your board.

Why this matters

StatusGator helps teams detect outages earlier by combining official status updates with reports from real users experiencing issues.

If your monitoring system detects a problem before the service’s official status page reports it, you can submit an outage report through the API. These reports contribute to StatusGator’s Early Warning Signals system.

As a reminder, Early Warning Signals help identify potential outages before they’re officially confirmed. When enough users report issues with the same service within a short period of time, StatusGator recognizes the pattern and updates dashboards across the platform to indicate that an outage may be developing.

The more reports StatusGator receives, the earlier these signals can appear – helping teams respond faster when services they depend on start having problems.

Example request

curl https://statusgator.com/api/v3/boards/{board_id}/outage_reports \
  --request POST \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer YOUR_SECRET_TOKEN" \
  --data '{
    "outage_report": {
      "monitor_id": "abc123def",
      "comment": "API returning 500s",
      "email": "reporter@example.com",
      "component_ids": [
        "comp1",
        "comp2"
      ]
    }
  }'

Example request

{
  "success": true,
  "data": {
    "id": "abc123def",
    "monitor_id": "xyz789ghi",
    "service_name": "GitHub",
    "comment": "API returning 500s",
    "email": "reporter@example.com",
    "component_ids": ["comp1", "comp2"],
    "confirmed_at": "2023-10-01T12:00:00Z",
    "created_at": "2023-10-01T12:00:00Z"
  }
}

Get started

You can explore the new endpoint and request schema in the API documentation.

If you’re already using the API, this endpoint should integrate easily into your existing automation and incident workflows.

Share this

Photo of author

Valeria Kurolapova

Valeria Kurolapova is the Senior Product Designer and UX Manager at StatusGator. She manages product design initiatives, focusing on improving user experience.