Get page
GET
/status-pages/{id}
Authentication
Bearer Token (hu_api_key)
Path Parameters
id
string
required
path
Responses
200
Status page with components
No response body
curl -X GET 'https://happyuptime.com/api/v1/status-pages/string' \ -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://happyuptime.com/api/v1/status-pages/string', { method: 'GET', headers: { "Authorization": "Bearer YOUR_API_TOKEN" }});const data = await response.json();console.log(data);
import requestsheaders = { 'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://happyuptime.com/api/v1/status-pages/string', headers=headers)print(response.json())
API Playground
Try this endpoint
GET
/status-pages/{id}