Vendor Status Page Monitor - Incident Alerts avatar

Vendor Status Page Monitor - Incident Alerts

Pricing

from $18.50 / 1,000 per alert delivereds

Go to Apify Store
Vendor Status Page Monitor - Incident Alerts

Vendor Status Page Monitor - Incident Alerts

Watch the status pages of the services you depend on and get told when one declares an incident. One feed for every vendor, read from the Statuspage and Instatus documents they publish themselves.

Pricing

from $18.50 / 1,000 per alert delivereds

Rating

0.0

(0)

Developer

Lowland Data

Lowland Data

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 hours ago

Last modified

Share

Watches the status pages of the services you depend on - GitHub, Cloudflare, OpenAI, AWS, your payment provider - and tells you when one of them declares an incident. One feed for every vendor, so the next time something breaks you can answer the first question quickly: is it us, or is it them?

Live health record: lowlanddata.com/status/status-page-monitor - 30-day success rate and daily canary results, failures included. Full input/output reference: tool page.

It reads the machine-readable summary that status pages publish for exactly this purpose - the same document their own dashboards run on. Most vendor pages are hosted on Atlassian Statuspage or Instatus, and both are read directly. No API key, no scraping, no account with a monitoring service.

Quick start (30 seconds, no keys needed)

  1. Hit Start with the prefilled pages. You get one row per page - GitHub, Cloudflare, OpenAI - plus a row for every incident open right now.
  2. Replace the list with your own vendors. A hostname (status.example.com) or a full URL both work.
  3. Add a schedule (every 5-15 minutes is sensible) and set alertsOnly: true. From then on the runs are silent until a vendor posts something new.

Who uses this

  • On-call engineers get a Slack message when a dependency declares an incident, instead of finding out from a customer.
  • Support teams watch the vendors behind their product, so the first ticket about checkout gets answered with "our payment provider has an open incident" rather than a shrug.
  • SRE and platform teams feed impact and affectedComponents into an incident channel, and use the page-summary rows for an internal dashboard.
  • Anyone running an AI product watches model providers, where a monitoring status on inference explains a bad afternoon better than any log.
  • Agencies keep one profile per client stack.

What you get

Two kinds of row. An incident row for anything open:

{
"statusPage": "https://www.cloudflarestatus.com",
"vendor": "Cloudflare",
"platform": "statuspage",
"indicator": "minor",
"isIncident": true,
"incidentId": "9g65dxfbcjln",
"title": "Incorrect geo location for some Cloudflare WARP users",
"incidentStatus": "identified",
"impact": "minor",
"startedAt": "2026-08-27T18:46:19.000Z",
"updatedAt": "2026-09-01T08:29:56.000Z",
"affectedComponents": ["WARP"],
"latestUpdate": "We are continuing to work on a fix for this issue.",
"url": "https://www.cloudflarestatus.com/incidents/9g65dxfbcjln",
"isNewOrChanged": true,
"checkedAt": "2026-09-08T21:12:00.000Z"
}

And a page summary row for each vendor, healthy or not - the one that makes a dashboard:

{
"statusPage": "https://www.githubstatus.com",
"vendor": "GitHub",
"indicator": "none",
"isIncident": false,
"statusDescription": "All Systems Operational",
"openIncidents": 0,
"componentsDown": [],
"componentCount": 12,
"pageUpdatedAt": "2026-09-08T17:54:17.149Z"
}

A vendor whose page cannot be read does not sink the run. The failure is recorded, every other vendor still reports, and the run says so:

WARN status.customvendor.com failed: No status API found - tried /api/v2/summary.json, /summary.json
INFO [Status message]: 4 status pages read, 3 open incidents (1 new or changed since the last run).

Reading the fields

FieldWhat it tells you
indicatorThe page's own verdict: none, minor, major, critical, maintenance. Filter a dashboard on this.
incidentStatusWhere the vendor is in the lifecycle: investigating -> identified -> monitoring -> resolved.
impactHow bad the vendor says it is. major and critical are the ones worth waking someone for.
componentsDownWhich named parts are not operational, with the state - often more precise than the headline indicator.
isNewOrChangedTrue when this row differs from the previous run: a new incident, or an existing one the vendor updated.

How change detection works

Every monitor on this store is vague about this, so here it is in full:

  • Where the memory lives. A named key-value store on your account (stateStoreName). It holds one fingerprint per incident - its status plus the vendor's own last-update timestamp - and one per page. There is no server on my side holding your vendor list.
  • What counts as a change. A new incident, an incident the vendor updated (a new post, or a move from investigating to identified), or a page whose overall indicator shifted. An unchanged incident stays quiet, however long it runs.
  • alertsOnly: false (the default) returns the full picture every run: a row per page plus every open incident. Good for a dashboard refresh.
  • alertsOnly: true returns only new or changed incidents. A quiet run finishes empty, and the status line still tells the truth: 12 status pages read, 2 open incidents (0 new or changed since the last run).
  • Resolution. An incident being resolved is itself a change, so with includeResolved: true you get the all-clear as a row.
  • Starting over. resetState: true forgets the fingerprints, and everything currently open alerts again.

What watching 12 vendors costs

Pay per outcome, so quiet minutes are nearly free.

EventPriceWhen it is charged
Incident alert$0.0199 (from $0.0185 on paid plans)An incident row - something a vendor has declared
Page checked$0.00199A page-summary row in a full audit (alertsOnly: false)
Actor start$0.005Per run, whatever it finds

Live prices are always the ones on this page's Pricing tab. A worked example: 12 vendors, checked every 15 minutes with alertsOnly: true. A quiet run costs the actor start alone - about $14 a month for 2,880 checks - and you pay about 2 cents only when a vendor actually declares something. Drop to hourly and the same watch costs about $3.60 a month. New Apify accounts come with free monthly platform credits.

Input reference

FieldTypeDefaultWhat it does
statusPagesstring[]three sample vendorsStatus page URLs or hostnames
alertsOnlybooleanfalseReport only new or changed incidents - the setting for a schedule
includeScheduledMaintenancebooleanfalseInclude announced maintenance windows
includeResolvedbooleanfalseInclude incidents the vendor has already closed
concurrencyinteger6Pages read in parallel
resetStatebooleanfalseForget the fingerprints and alert on everything open
stateStoreNamestringstatus-monitor-stateWhich named store holds this monitor's memory
maxItemsinteger500Stop after this many rows

The list is also accepted under pages, vendors, urls or services, and a single comma-separated string works as well as a list - so an AI agent's first guess at the input tends to run.

Scheduling and API use

curl -X POST "https://api.apify.com/v2/acts/lowlanddata~status-page-monitor/runs?token=YOUR_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"statusPages":["https://www.githubstatus.com","https://status.openai.com"],"alertsOnly":true}'

Pull only what a vendor has declared:

$curl "https://api.apify.com/v2/datasets/DATASET_ID/items?format=json&filter=isIncident"

In n8n or Make: Schedule -> this actor with alertsOnly: true -> Slack. A quiet run returns zero items, so the message fires only when there is something to say.

Use it with AI agents (MCP)

Every tool here doubles as an MCP endpoint: status-page-monitor/api/mcp. A prompt worth keeping around when something breaks:

Check the status pages of GitHub, Cloudflare, OpenAI and Stripe and tell me
whether any of them has an open incident right now.

Which pages can it read

  • Atlassian Statuspage - the majority of vendor status pages, including GitHub, Cloudflare, OpenAI, DigitalOcean, Reddit, Twilio and Atlassian's own.
  • Instatus - the other common host, read at its own summary endpoint.
  • Custom-built status pages have no standard machine-readable document, so they cannot be read. The run reports the vendor as failed rather than pretending it is healthy - a monitor that invents an "all clear" is worse than no monitor. If a vendor you need is missing, tell me and I will look at whether it publishes anything readable.
  • Some vendors redirect an old status hostname to a new one; redirects are followed.

Yes. These endpoints exist to be polled - they are what the vendor's own status widgets and third-party dashboards read, and a check is one request per page. Nothing is authenticated to.

Incident updates are written by the vendor's on-call staff, and the raw document carries author names, addresses and social handles alongside the text. Those are never read. The parser takes the update body, the status, the timestamps and the affected component names; a test in the build feeds it an incident stuffed with fake author details and fails if any of it reaches the output. So the rows are safe to store, forward into a ticket system and keep.

FAQ

Is this an uptime monitor? No, and the difference matters. This reports what a vendor admits on its own page. It will not notice an outage the vendor has not posted yet - but when they do post, you get it in seconds, with their own wording and component list.

How often should I run it? Every 5-15 minutes for vendors you would page someone about; hourly for the rest. Quiet runs charge only the actor start.

Why is one of my vendors always failing? Their status page is probably custom-built with no machine-readable feed. See the coverage list above.

Do I get an alert when it is fixed? Set includeResolved: true and the resolution arrives as a change, so the all-clear reaches the same channel.

Will a week-long incident alert me every run? No. It alerts when it appears and again each time the vendor posts an update or changes its status.

More tools from Lowland Data

Same house rules everywhere: clean schemas, public sources, no personal data in the output.

ToolWhat it does
SSL & Domain Expiry MonitorCertificate and domain-registration countdowns for your hosts
Dependency Release MonitorNew npm, PyPI and GitHub releases, with breaking-change flags
US Federal Grants MonitorNew federal funding opportunities matching your profile

Full catalogue: lowlanddata.com/catalogue.

Support

A vendor page that will not read, or one you need supported? Open an issue on the Issues tab with the run ID, or write to contact@lowlanddata.com. Reports get read the same day.