# Private pages API Reference

Source: https://instatus.com/help/api/private-pages

## Get your status page secure link

If your account has member / owner access to a private status page with secure links enabled, you're allowed to get the secure link to your page.

**Endpoint:**

```bash
GET /v2/pages?page=:page&per_page=:per_page
```

- The default page number is 1.
- The default per_page number is 50 and the maximum is 100 items per page.

**Example response:**

```json
[
  {
    "id": "ckf01fonve9i40a32oas5b0uw",
    "secureLink": "https://instatus.business/auth?jwt=JWT_TOKEN"
  }
]
```

## Regenerate your secure link

If you want to regenerate your secure link, you can do it by calling this endpoint.

**Endpoint:**

```bash
POST /v1/:page_id/regenerate-secure-link
```

**Example response:**

```json
{
	"id": "ckf01fonve9i40a32oas5b0uw",
	"secureLink": "https://instatus.business/auth?jwt=JWT_TOKEN"
}
```
