How to get all Space Names, Keys and Homepage URLs from DB

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

This process requires the use of direct database manipulation and is not part of Confluence's intended functionality. As such, this process is not covered under the Atlassian Support Offerings and the information on this page is provided as-is. It should be thoroughly tested in a development or staging environment before implementing any changes in your production instance.

Sometimes it might be necessary to get a list of all Spaces, Space Key and home page URLs that exist in the instance. This information can be pulled directly from the database.

Solution

All space information is stored in Spaces Table. Home page is just a normal Confluence page, so it is simply referenced by PAGE ID in spaces table. This information can be turned into URL with concat function and Confluence PageID URL Format (See The Differences Between Various URL Formats for a Confluence Page).

Below query will give you Space Name, Space Key and home page URL

1 2 SELECT s.spacename, s.spacekey, CONCAT('https://confluence.example.com/pages/viewpage.action?pageId=', s.homepage) FROM spaces AS s;

ℹ️ Replace https://confluence.example.com with your Confluence Base URL

Updated on April 2, 2025

Still need help?

The Atlassian Community is here for you.