confluence_get_pages_in_space
Retrieve all pages from a Confluence space with pagination support. Apply filters like title, status, depth, and body format; use cursor for more results or full=true for raw API response.
Instructions
Get all pages in a specific space. Results are paginated - use the returned cursor to fetch more pages if you don't find what you need. Output is trimmed by default (drops _links, _expandable, body content, etc.); pass full=true to receive the raw Confluence response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | If true, bypass response trimming and return the raw Confluence API response. | |
| depth | No | Depth of pages to return (all or root level only, default: all) | |
| limit | No | Maximum number of results (default 25, max 250) | |
| title | No | Filter by exact title match | |
| cursor | No | Cursor for pagination | |
| status | No | Filter by status (current, trashed, deleted, etc.) | |
| spaceId | Yes | The ID of the space | |
| bodyFormat | No | The format of the body content to return |