get_space_content
Extract pages from a Confluence space by specifying a space key, with options to set result limits, pagination, and body formats for efficient content retrieval.
Instructions
Get pages from a specific space
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bodyFormat | No | Body format to include: "storage" or "view" (optional) | |
| limit | No | Maximum results (default: 25) | |
| spaceKey | Yes | Space key | |
| start | No | Starting index for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"bodyFormat": {
"description": "Body format to include: \"storage\" or \"view\" (optional)",
"enum": [
"storage",
"view"
],
"type": "string"
},
"limit": {
"default": 25,
"description": "Maximum results (default: 25)",
"type": "number"
},
"spaceKey": {
"description": "Space key",
"type": "string"
},
"start": {
"default": 0,
"description": "Starting index for pagination (default: 0)",
"type": "number"
}
},
"required": [
"spaceKey"
],
"type": "object"
}