Get status page

Get the selected status page


GET/api/status-pages/{statusPage}

Get status page

Retrieves details for a specific status page.

Request

GET
/api/status-pages/{statusPage}
curl -X GET "https://ploi.io/api/status-pages/{statusPage}" \
  -H "Authorization: Bearer {token}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json"

Response

{
  "data": {
    "id": 1,
    "name": "My awesome status page",
    "slug": "my-awesome-status-page",
    "description": null,
    "theme": {
      "logo": null,
      "borders": {
        "header": false
      },
      "primary": "#1853DB",
      "branding": true,
      "lightMode": "light",
      "secondary": "#1853DB"
    }
  }
}