PHPackages                             checkitonus/statuspage-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. checkitonus/statuspage-sdk

ActiveLibrary[API Development](/categories/api)

checkitonus/statuspage-sdk
==========================

PHP Implementation of the Atlassian Status Page API

0.1.3(7y ago)121MITPHPPHP &gt;=5.6.0CI passing

Since Mar 26Pushed 7mo ago2 watchersCompare

[ Source](https://github.com/checkitonus/php-statuspage-sdk)[ Packagist](https://packagist.org/packages/checkitonus/statuspage-sdk)[ RSS](/packages/checkitonus-statuspage-sdk/feed)WikiDiscussions main Synced 2mo ago

READMEChangelog (4)Dependencies (6)Versions (5)Used By (0)

StatusPage API
==============

[](#statuspage-api)

[![CheckItOn.Us Logo](https://camo.githubusercontent.com/e04a3331de03c212c6d1463fc13fbb8a815f662676ccff8f65ce4de5a3dd8c43/68747470733a2f2f7777772e636865636b69746f6e2e75732f696d672f6d6f6e6f2d6c6f676f2e706e67)](https://www.checkiton.us)

[![Build Status](https://camo.githubusercontent.com/f53da52dcf8ebc504fe4496c4a357b4e465353e7e792281c28b3b1b07cf0aae7/68747470733a2f2f7472617669732d63692e6f72672f636865636b69746f6e75732f7068702d737461747573706167652d73646b2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/checkitonus/php-statuspage-sdk)

Easy to use StatusPage API implementation.

Installation
============

[](#installation)

```
$ composer require checkitonus/statuspage-sdk

```

```
{
    "require": {
        "checkitonus/statuspage-api": "master"
    }
}

```

Then, in your PHP file, all you need to do is require the autoloader:

```
require_once 'vendor/autoload.php';

use CheckItOnUs\StatusPage\Server;

$server = new Server([
    'api_key' => 'API-KEY',
    'base_url' => 'https://api.statuspage.io/v1/pages'
]);

// Should return your first component
echo $server->components()->first()->toApi();
```

API Components
==============

[](#api-components)

Once installed, you will have access to several objects all of which will hit the API and retrieve the data as needed.

Please Note: Although all of these samples are using the `Component` class, they are available for the following objects:

- CheckItOnUs\\StatusPage\\Component
- CheckItOnUs\\StatusPage\\Incident

```
require_once 'vendor/autoload.php';

use CheckItOnUs\StatusPage\Server;
use CheckItOnUs\StatusPage\Component;

$server = new Server([
    'api_key' => 'API-KEY',
]);

// Find a component based on the name
$component = Component::on($server)->findByName('API');

// Find a component based on the ID
$component = Component::on($server)->findById(1);

// Find all components
Component::on($server)->all();
```

CRUD Operations
---------------

[](#crud-operations)

### Creation

[](#creation)

```
require_once 'vendor/autoload.php';

use CheckItOnUs\StatusPage\Server;
use CheckItOnUs\StatusPage\Component;

$server = new Server([
    'api_key' => 'API-KEY',
]);

// Fluent API
$component = (new Component($server))
                ->setName('Name Here')
                ->setStatus(Component::OPERATIONAL)
                ->create();
```

### Update

[](#update)

```
require_once 'vendor/autoload.php';

use CheckItOnUs\StatusPage\Server;
use CheckItOnUs\StatusPage\Component;

$server = new Server([
    'api_key' => 'API-KEY',
]);

// Fluent API
Component::on($server)
    ->findById(1)
    ->setName('Name Here')
    ->setStatus(Component::OPERATIONAL)
    ->update();
```

### Delete

[](#delete)

```
require_once 'vendor/autoload.php';

use CheckItOnUs\StatusPage\Server;
use CheckItOnUs\StatusPage\Component;

$server = new Server([
    'api_key' => 'API-KEY',
]);

// Fluent API
Component::on($server)
    ->findById(1)
    ->delete();
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance43

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~65 days

Total

4

Last Release

2772d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6c1a37465afdee14b2740a387deaae40ac376e38015db7af98f90b7fd97fed22?d=identicon)[awjudd](/maintainers/awjudd)

---

Top Contributors

[![awjudd](https://avatars.githubusercontent.com/u/1910996?v=4)](https://github.com/awjudd "awjudd (14 commits)")

### Embed Badge

![Health badge](/badges/checkitonus-statuspage-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/checkitonus-statuspage-sdk/health.svg)](https://phpackages.com/packages/checkitonus-statuspage-sdk)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[ashallendesign/laravel-exchange-rates

A wrapper package for interacting with the exchangeratesapi.io API.

485677.8k](/packages/ashallendesign-laravel-exchange-rates)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[webgriffe/sylius-akeneo-plugin

Plugin allowing to import products data from Akeneo PIM to your Sylius store.

2477.8k](/packages/webgriffe-sylius-akeneo-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
