GET /status-pages

Authentication

Bearer Token (hu_api_key)

Query Parameters

page integer optional query
per_page integer optional query

Responses

200 Paginated list of status pages

No response body

curl -X GET 'https://happyuptime.com/api/v1/status-pages' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://happyuptime.com/api/v1/status-pages', {  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', headers=headers)print(response.json())