Get status page subscriber

Returns a single email subscriber of your status page.

GET https://uptime.betterstack.com/api/v2/status-pages/{status_page_id}/subscribers/{subscriber_id}

URL parameters

status_page_id
required string
subscriber_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "123456789",
    "type": "status_page_subscriber",
    "attributes": {
      "status_page_id": 987654321,
      "email": "customer@example.com",
      "status_page_resource_ids": [],
      "confirmed_at": "2026-04-29T14:30:00.000Z",
      "created_at": "2026-04-29T14:30:00.000Z",
      "updated_at": "2026-04-29T14:30:00.000Z"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/status-pages/987654321/subscribers/123456789 \
  --header "Authorization: Bearer $TOKEN"


Looking for the details of a specific parameter?

Explore the list of all status page subscriber API parameters.