Confluence REST API documentation

This document describes the REST API and resources provided by Confluence wiki. The REST APIs are for developers who want to integrate Confluence into their application and for administrators who want to script interactions with the Confluence server.

Confluence's REST APIs provide access to resources (data entities) via URI paths. To use a REST API, your application will make an HTTP request and parse the response. By default, the response format is XML. If you wish, you can request JSON instead of XML. Your methods will be the standard HTTP methods like GET, PUT, POST and DELETE.

Because the REST API is based on open standards, you can use any web development language to access the API.

Structure of the REST URIs

URIs for a Confluence REST API resource have the following structure:

With context: http://host:port/context/rest/api-name/api-version/resource-name

Or without context: http://host:port/rest/api-name/api-version/resource-name

Currently, the only api-name available is 'prototype'. This is an API that allows basic interactions with a Confluence installation and retrieves information about space and content details.

Example with context: http://myhost.com:8080/confluence/rest/prototype/1/space/ds

Example without context: http://confluence.myhost.com:8095/rest/prototype/1/space/ds

How to use expansion in the REST APIs

In order to be minimise network traffic from the client perspective, our API uses a technique called expansion.

You can use the 'expand' query parameter to specify a comma-separated list of entities that you want expanded, identifying each entity by a given identifier. For example, the value "space,attachments" requests the expansion of entities for which the expand identifier is "space" and "attachments".

To discover the identifiers for each entity, look at the 'expand' attribute in the parent entity. In the XML example below, the page entity declares space, children, comments and attachments as being expandable.

Note: The 'expand' attribute should not be confused with the 'expand' query parameter which specifies which entities you want expanded.

You can use the dot notation to specify expansion of entities within another entity. For example "children.children" would expand the children and the children's children (because its expand identifier is children) and the child entities within the plugin.

If not otherwise indicated, all methods return both XML and JSON. Below are examples of the XML and JSON representations.

XML representation:

[expand]
The same content in JSON:
[expand]

This document the current REST API provided by Confluence.

Resources

/attachment

Methods

GET

This method will always return HTTP 404 (not found) as it can not find attachments without an ID.

available response representations:

  • 404 [expand]

/attachment/{id}

resource-wide template parameters
parametervaluedescription

id

long

Methods

GET

Returns a full representation of the attachment for the given ID. The ID is that of an attachment and not the page it is attached to.

available response representations:

  • 404 [expand]
  • 200 (attachmentEntity) [expand]

/search?query&type&search&startIndex&pageSize&spaceKey&attachmentType

A service providing search results using the Confluence search with various parameters.

Methods

GET

Search Confluence using the given parameters.

request query parameters
parametervaluedescription

query

string

Query string.

type

string

Content types to search for. Can be one of: PAGE, COMMENT, BLOG, ATTACHMENT, PERSONAL_INFORMATION, SPACE_DESCRIPTION, PERSONAL_SPACE_DESCRIPTION, MAIL or USER_STATUS. You can specify multiple types by passing a comma separated list like: &type=mail,blog

search

string

Default: site

The type of search. Can be one of: name, site (case sensitive, if no match is found site is assumed).

startIndex

int

Default: 0

Start index for site searches.

pageSize

int

Max size of page for site searches.

spaceKey

string

Keys of spaces to search in. If not specified, Confluence searches in all spaces.

attachmentType

string

Attachment types to search in. If not specified, Confluence searches all attachments. Can be one or more of: PDF IMAGE, XML, HTML, TEXT, WORD, EXCEL, POWERPOINT, JAVA_SOURCE, JAVA_ARCHIVE, ZIP. You can specify multiple types like this: ?attachmentType=image&attachmentType=pdf

available response representations:

  • 200 (searchResultEntityList) [expand]

/content

Rest resource for accessing Confluence content. Currently supports only read access for pages, blogs and comments.

Methods

GET

Returns HTTP 404 (not found) as there is no content to return if no ID is passed.

available response representations:

  • 404 [expand]

/content/{id}

resource-wide template parameters
parametervaluedescription

id

long

Methods

GET

Returns the content for the given ID.

available response representations:

  • 404 [expand]
  • 200 (contentEntity) [expand]

/content/{id}/attachments?start-index&max-results&mimeType&attachmentType

resource-wide template parameters
parametervaluedescription

id

long

ID of resource (such as a page or blog post)

Methods

GET

Returns the attachments for a given resource. The results are ordered by the creation date.

request query parameters
parametervaluedescription

start-index

string

Index of first item (inclusive) to return.

max-results

string

Maximum number of items to return. Default is 50.

mimeType

string

Mime types to filter the attachments by, such as: image/jpeg

attachmentType

string

'Nice' type to filter the attachments by. Filtering is case insensititve. Can be one or more of: PDF, IMAGE, XML, HTML, TEXT, WORD, EXCEL, POWERPOINT, JAVA_SOURCE, JAVA_ARCHIVE, ZIP. You can specify multiple types like this: ?attachmentType=image&attachmentType=pdf

available response representations:

  • 404 [expand]
  • 200 (attachmentEntity) [expand]

/session

Methods

GET

Returns the UserSessionEntity for the user making the request. Example URL: http://host/confluence/rest/prototype/1/session

available response representations:

  • 200 (userSessionEntity) [expand]

/session/history?start-index&max-results

Methods

GET

Returns the UserHistoryList for the user making the request. Example URL: http://host/confluence/rest/prototype/1/session/history

request query parameters
parametervaluedescription

start-index

string

The first (inclusive) index to return. Can be any integer zero or greater.

max-results

string

The number of results to return. Can be any positive integer.

available response representations:

  • 200 [expand]

/i18n

Rest resource for accessing translations in Confluence.

Methods

GET

This method will always return HTTP 404 (not found) as it can not find any message bundles without a key.

available response representations:

  • 404 [expand]

/i18n/{key}

resource-wide template parameters
parametervaluedescription

key

string

The plugin key as it is defined in the atlassian-plugin.xml.

Methods

GET

Returns the text for the given key. If the specified plugin key does not exist, or the caller does not have permission to access the plugin texts, the response is HTTP 404 (not found). Note that only JSON is returned. An example URL including a plugin key would look like this: http://host/confluence/rest/prototype/1/i18n/com.atlassian.confluence.tinymceplugin

available response representations:

  • 404 [expand]
  • 200 [expand]

/

Methods

GET

Returns an empty page. Note that this method will not even return a valid XML document nor valid JSON.

available response representations:

/space?type&start-index&max-results

Rest resource for accessing Confluence spaces. Currently supports only read access to spaces.

Methods

GET

Retrieves a list of spaces visible to the currently logged in user, alphabetically by space name. An optional parameter 'type' allows filtering on space type. The standard paging parameters 'start-index' and 'max-results' can be used to page through the list. A maximum of 50 (defined by {@link DefaultRestSpaceManager#DEFAULT_MAX_SIZE}) spaces will be listed.

request query parameters
parametervaluedescription

type

string

Default: all

The space type parameter to filter the list by. Type can be one of: GLOBAL, PERSONAL, ALL

start-index

string

The first (inclusive) index to return. Can be any integer zero or greater.

max-results

string

The number of results to return. Can be any positive integer.

available response representations:

  • 200 (spaceEntityList) [expand]

/space/{key}

resource-wide template parameters
parametervaluedescription

key

string

Methods

GET

Returns information about a space identified by the key passed. ReturnsReturns http HTTP 404 (not found) if the space is not found or the user requesting it does not have the correct permissions.

available response representations:

  • 404 [expand]
  • 200 (spaceEntity) [expand]
View cookie preferences