Fetch a status page RSS feed
GET
/public/status-pages/{slug}/feed.rss
const url = 'https://api.perstat.io/public/status-pages/example/feed.rss';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.perstat.io/public/status-pages/example/feed.rssReturns an RSS 2.0 feed combining a status page’s incidents and upcoming maintenance windows, newest first. Protected pages require a valid viewer token via header or query; without access the endpoint responds 404 to hide the page’s existence. Shared-password pages cannot be consumed by feed readers because their unlock is cookie-based.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”slug
required
string
Query Parameters
Section titled “Query Parameters”token
string
Viewer-Token für private Seiten
Responses
Section titled “Responses”Media typeapplication/rss+xml