Last updated 4 days ago
Was this helpful?
Gets a list of all components linked to a status page
Status Page ID
List of components
Get details of a status page component
Component ID
Component details
const response = await fetch('https://api.spike.sh/api/status-page/{statusPageId}/component', { method: 'GET', headers: { "x-api-key": "text" }, }); const data = await response.json();
const response = await fetch('https://api.spike.sh/api/status-page/{statusPageId}/component/{componentId}', { method: 'GET', headers: { "x-api-key": "text" }, }); const data = await response.json();