Get single status page section

Returns a single status page section.

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

URL parameters

status_page_id
required string
section_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "12345",
    "type": "status_page_section",
    "attributes": {
      "name": "Current status by service",
      "position": 0
    }
  }
}

Example cURL

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