# List status pages in a group

Returns status pages belonging to the given status page group. This endpoint [supports pagination](https://betterstack.com/docs/uptime/api/pagination/).

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/status-page-groups/{status_page_group_id}/status-pages"
method = "GET"

[[path_param]]
name = "status_page_group_id"
description = "The ID of the status page group you want to get status pages from."
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a paginated list of status pages in the specified group.'''
body = '''{
  "data": [
    {
      "id": "123456789",
      "type": "status_page",
      "attributes": {
        "company_name": "Best company",
        "company_url": "https://best-company.com",
        "contact_url": null,
        "logo_url": null,
        "dark_logo_url": null,
        "whitelabeled": false,
        "timezone": "Tokyo",
        "subdomain": "best-company-tokyo",
        "custom_domain": null,
        "custom_css": null,
        "custom_javascript": "",
        "google_analytics_id": null,
        "min_incident_length": 400,
        "announcement": null,
        "announcement_embed_visible": false,
        "announcement_embed_css": "",
        "announcement_embed_link": "",
        "automatic_reports": false,
        "subscribable": false,
        "hide_from_search_engines": false,
        "password_enabled": false,
        "ip_allowlist": [],
        "history": 90,
        "aggregate_state": "operational",
        "design": "v1",
        "navigation_links": [],
        "theme": "light",
        "layout": "vertical",
        "created_at": "2020-08-10T07:34:38.848Z",
        "updated_at": "2020-12-08T14:12:31.680Z"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/status-page-groups/42/status-pages?page=1",
    "last": "https://uptime.betterstack.com/api/v2/status-page-groups/42/status-pages?page=1",
    "prev": null,
    "next": null
  }
}'''
[/responses]

#### Example cURL

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/status-page-groups/42/status-pages \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all status pages API parameters](https://betterstack.com/docs/uptime/api/status-pages-api-response-params/)
[/info]
