API Documentation

Developer resources and API documentation for integrating with Skye Energy's services.

Status Page API

Access real-time status information for Skye Energy's services programmatically.

Base URL

https://m39ypk0yp48t.statuspage.io/api/v2/

Key Endpoints

GET /summary.json

Get a summary of the status page including component statuses and incidents.

GET /status.json

Get the overall status rollup for the entire platform.

GET /components.json

Get detailed status information for all system components.

GET /incidents/unresolved.json

Get all currently unresolved incidents.

JavaScript Widget

Easily embed status information into your applications using our JavaScript library.

Installation

<script src="https://cdn.statuspage.io/se-v2.js"></script>

Usage Example

var sp = new StatusPage.page({ page: &apos;m39ypk0yp48t&apos; });
sp.summary({
  success: function(data) {
    console.log(data.status.indicator);
    console.log(data.components);
  }
});