Status Pages: Retrieve One

This documentation entry provides a clear and detailed guide on how to retrieve a specific status page using the API, including the necessary parameters, headers, and expected response.

Endpoint

GET /api/status-pages/{status_page_id}

Retrieve detailed information about a specific status page by its unique identifier.

Request

HTTP Request

GET https://uptimekeep.com/api/status-pages/{status_page_id}

Replace {status_page_id} with the ID of the status page you wish to retrieve.

Headers

Header
Type
Description

Authorization

String

Bearer token for API authentication.

Example of a request:

curl --request GET \
--url 'https://uptimekeep.com/api/status-pages/{status_page_id}' \
--header 'Authorization: Bearer {api_key}'

Response

A successful response returns a JSON object containing detailed information about the specified status page.

Response Example

Fields

Data Object

Field
Type
Description

id

Integer

Unique identifier for the status page.

domain_id

Integer

ID of the associated domain (if applicable).

monitors_ids

Array

List of monitor IDs associated with the status page.

project_id

Integer

ID of the associated project (if applicable).

url

String

URL slug for the status page.

full_url

String

Full URL of the status page.

name

String

Name of the status page.

description

String

Description of the status page.

socials

Object

Social media links and other external URLs (see below for details).

logo_url

String

URL of the logo used on the status page.

favicon_url

String

URL of the favicon used on the status page.

password

Boolean

Indicates if the status page is password-protected.

timezone

String

Timezone for the status page.

custom_js

String

Custom JavaScript added to the status page.

custom_css

String

Custom CSS added to the status page.

pageviews

Integer

Number of pageviews for the status page.

is_se_visible

Boolean

Indicates if the status page is visible to search engines.

is_removed_branding

Boolean

Indicates if branding has been removed from the status page.

is_enabled

Boolean

Indicates if the status page is currently active.

datetime

String

Timestamp when the status page was created (in YYYY-MM-DD HH:MM:SS format).

Socials Object

Field
Type
Description

facebook

String

Facebook profile or page link.

instagram

String

Instagram profile link.

twitter

String

Twitter profile link.

email

String

Email address associated with the status page.

website

String

External website URL.

Errors

If the request fails, the API will return an error message with an appropriate HTTP status code, such as 404 Not Found if the status page ID does not exist.

Last updated