GET/v2/statuspages/{uuid}

Get a status page

Returns a specific status page with full configuration details.

Request

Path Parameters
uuidstringrequired
The status page UUID
Example:"sp_abc123xyz"

Response

Returns the status page with all settings and sections.

RequestcURL
curl -X GET https://api.hyperping.io/v2/statuspages/sp_abc123xyz \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "statuspage": {
    "uuid": "sp_abc123xyz",
    "name": "My Status Page",
    "hostname": "status.mycompany.com",
    "hostedsubdomain": "mycompany.hyperping.app",
    "url": "status.mycompany.com",
    "password_protected": false,
    "settings": {
      "name": "My Status Page",
      "website": "https://mycompany.com",
      "description": { "en": "Service status for My Company" },
      "languages": ["en"],
      "default_language": "en",
      "theme": "system",
      "font": "Inter",
      "accent_color": "#36b27e",
      "auto_refresh": false,
      "banner_header": true,
      "logo": "https://example.com/logo.png",
      "logo_height": "32px",
      "favicon": "https://example.com/favicon.ico",
      "hide_powered_by": false,
      "hide_from_search_engines": false,
      "google_analytics": null,
      "subscribe": {
        "enabled": true,
        "email": true,
        "slack": true,
        "teams": false,
        "sms": false
      },
      "authentication": {
        "password_protection": false,
        "google_sso": true,
        "google_allowed_domains": ["mycompany.com"],
        "saml_sso": true,
        "sso_connection_uuid": "sso_abc123xyz",
        "sso_connection": {
          "uuid": "sso_abc123xyz",
          "name": "Corporate Azure AD",
          "provider": "azure"
        }
      }
    },
    "sections": [
      {
        "name": { "en": "Services" },
        "services": [
          {
            "id": "mon_abc123",
            "uuid": "mon_abc123",
            "name": { "en": "API" },
            "description": { "en": "Main API endpoint" },
            "is_group": false,
            "show_uptime": true,
            "show_response_times": true
          }
        ]
      }
    ]
  }
}