# Read Page Content

`GET /pages/{pageId}/content`

Returns the page's frontmatter and authored markdown body as `text/markdown`. The `ETag` response header identifies this version for a later conditional replacement.
## Authentication

Use one of the following authentication alternatives:

- **API token** (`bearerToken`) : Send a named API token in the Authorization header. Send it in the `Authorization: Bearer <token>` header.
- **Better Auth browser session** (`browserSession`) : Use the Better Auth session cookie from a signed-in browser session. Send it in the `better-auth.session_token` cookie.
## Token permissions

API tokens must include `pages:read`.
## Parameters

- `pageId` (path, required): The UUID of the page.
## Responses

### 200

The page's frontmatter and authored markdown body.

#### Response headers

- `ETag`: Revision identifier for the returned page content. Type: `string`.

### `text/markdown`

```text
"string"
```

### 403

The API token is missing a required scope: pages:read.


### `application/json`

```json
{
  "error": {
    "code": "string",
    "message": "string"
  }
}
```
