Pinghome API Documentation
This is the complete API documentation for connecting to the Pinghome API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet Pinghome: Pinghome is an uptime monitoring and incident management platform for websites, APIs, servers, status pages, and on-call operations. Keep reading to get started.
Quickstart
Before you run your first Pinghome request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one Pinghome connection — create or choose one in Connections. Note its
connectionId.
Every Pinghome action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/pinghome/latest/actions/{actionSlug}You need a MindCloud API Key and a Pinghome connection. Then call an action such as Check Service Health Status:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/pinghome/latest/actions/check-service-health-status" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authentication
Authentication has two layers. Your MindCloud API Key authenticates the request to MindCloud, sent as a Bearer token in the Authorization header. The connectionId selects the connected Pinghome account that should run the action. MindCloud stores and refreshes the Pinghome credentials behind that connection, so you never send provider tokens with your requests.
Pass connectionId in the query string for GET and DELETE actions, and in the JSON body for POST, PUT, and PATCH actions. Keep your MindCloud API Key on your server; do not ship it in browser code, mobile apps, public repositories, or logs.
Pinghome actions
All 72 published actions for this Pinghome version. Each page documents the endpoint, arguments, and response controls.
- PUTChange Uptime Monitor Status
- GETCheck Service Health Status
- POSTCreate Incident
- POSTCreate Oncall Schedule
- POSTCreate Personal Notification Channel
- POSTCreate Ruleset
- POSTCreate Service
- POSTCreate Statuspage
- POSTCreate Subscription For Statuspages
- POSTCreate Team
- POSTCreate Team Notification Channel
- POSTCreate Uptime Monitor
- POSTCreate Webhook
- DELETEDelete Oncall Schedule
- DELETEDelete Personal Notification Channel
- DELETEDelete Ruleset
- DELETEDelete Single Heartbeat Monitor
- DELETEDelete Statuspage
- DELETEDelete Statuspage Subscription
- DELETEDelete Subscription
- DELETEDelete Team
- DELETEDelete Uptime Monitor
- GETGet Account Payment Method Information
- GETGet Comprehensive Statuspage Details
- GETGet Customer Profile
- GETGet Domain Cname Settings
- GETGet Organisation Usage
- GETGet Plan Limits By Version
- GETGet Service Details
- GETGet Specific Heartbeat Information
- GETGet Specific Uptime Monitor
- GETGet Statistics For Statuspage Component
- GETGet Statuspage
- GETGet Subscription Payment History
- GETGet Subscription Proration Details
- GETList Customer Schedules
- GETList Incident Actions
- GETList Personal Notification Channels
- GETList Ruleset Actions
- GETList Rulesets
- GETList Service Heartbeats
- GETList Statuspage Components
- GETList Statuspage Subscriptions
- GETList Statuspages For Organisation
- GETList Team Incidents
- GETList Team Members
- GETList Team Notification Channels
- GETList Teams
- GETList Uptime Monitor Regions
- GETList Webhook Events
- GETList Webhooks
- POSTSetup Heartbeat Monitor
- PUTUpdate Customer Information
- PUTUpdate Heartbeat Monitor
- PUTUpdate Incident
- PUTUpdate Oncall Schedule
- PUTUpdate Organisation Plan
- PUTUpdate Personal Notification Channel
- PUTUpdate Personal Notification Channel Status
- PUTUpdate Ruleset
- PUTUpdate Ruleset Actions
- PUTUpdate Statuspage
- PUTUpdate Statuspage Status
- PUTUpdate Subscription
- PUTUpdate Team Member
- PUTUpdate Team Notification Channel
- PUTUpdate Team Notification Channel Status
- PUTUpdate Uptime Monitor
- GETView Heartbeat Statistics
- GETView Uptime Monitor Performance Report
- GETView Uptime Monitor Response Log History
- GETView Uptime Monitor State Change History
Related apps
More IT Operations apps on the Universal API, behind the same REST shape. Or browse all apps.