Skip to content

manage_spaces

Unified tool for listing and getting Confluence spaces.

ParameterTypeRequiredDescription
actionstringYeslist, get, or get_by_key
space_idstringFor getSpace ID
keystringFor get_by_keySpace key (e.g., DEV)
limitintNoResults per page (default 25)
cursorstringNoPagination cursor for next page
typestringNoFilter: global or personal
statusstringNoFilter: current or archived

List all spaces the authenticated user can access.

{
"action": "list",
"type": "global",
"limit": 10
}

Response:

[
{
"id": "131073",
"key": "DEV",
"name": "Development",
"type": "global",
"status": "current",
"homepage_id": "131074",
"web_url": "/wiki/spaces/DEV"
}
]

Get a space by its ID.

{
"action": "get",
"space_id": "131073"
}

Get a space by its key.

{
"action": "get_by_key",
"key": "DEV"
}