Get Overall Status

GET /status.json

Retrieves the overall status rollup for the entire page.

Responses

  • 200 application/json

    Overall status retrieved successfully

    Hide response attributes Show response attributes object
    • page object Required
      Hide page attributes Show page attributes object
      • id string Required

        Unique identifier for the page

      • name string Required

        Name of the status page

      • url string(uri) Required

        URL of the status page

      • updated_at string(date-time) Required

        Timestamp when the page was last updated (ISO 8601)

    • status object Required
      Hide status attributes Show status attributes object
      • description string Required

        Human-readable description

      • indicator string Required

        Status indicator level

        Values are none, minor, major, or critical.

  • 404 application/json

    The requested resource was not found

    Hide response attributes Show response attributes object
    • message string Required

      Error message

    • code integer

      Error code

  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
    • message string Required

      Error message

    • code integer

      Error code

GET /status.json
curl \
 --request GET 'https://status.mongodb.com/api/v2/status.json'
Response examples (200)
{
  "page": {
    "id": "y2j98763l56x",
    "url": "https://status.mongodb.com",
    "name": "MongoDB Cloud Status",
    "updated_at": "2025-03-11T00:52:20-07:00"
  },
  "status": {
    "indicator": "none",
    "description": "All Systems Operational"
  }
}
Response examples (404)
{
  "code": 404,
  "message": "Resource not found"
}
Response examples (500)
{
  "code": 500,
  "message": "Internal server error"
}