# Find Pages By Exact Title

`GET /pages/resolve`

Returns accessible, non-deleted pages whose titles match the `title` query without regard to case. Each result includes its computed folder path so duplicate titles can be distinguished.
## 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

- `title` (query, required): Title to match. Surrounding whitespace is ignored and matching is case-insensitive.
## Responses

### 200

Accessible pages with matching titles and computed folder paths.


### `application/json`

```json
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "parentId": "00000000-0000-0000-0000-000000000000",
      "title": "string",
      "icon": "string",
      "cover": {
        "type": "string",
        "value": "string"
      },
      "properties": {},
      "ownerId": "00000000-0000-0000-0000-000000000000",
      "permission": "view",
      "createdAt": "string",
      "updatedAt": "string",
      "folderPath": "string"
    }
  ]
}
```

### 403

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


### `application/json`

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