The instructions on this page describe how to define and execute a search using the advanced search capabilities of the Confluence REST API.
An advanced search allows you to use structured queries to search for content in Confluence. Your search results will take the same form as the Content model returned by the Content REST API.
When you perform an advanced search, you use the Confluence Query Language (CQL).
A simple query in CQL (also known as a 'clause') consists of a field, followed by an operator, followed by one or more values or functions. For example, the following simple query will find all content in the "TEST" space. It uses the Space field, the EQUALS operator, and the value "TEST"
.)
1 2space = "TEST"
It is not possible to compare two fields.
NOTE: CQL gives you some SQL-like syntax, such as the ORDER BY SQL keyword. However, CQL is not a database query language.
For example, CQL does not have a SELECT
statement.
Related topics:
The Content API REST Resource now supports CQL as a query parameter to filter the list of returned content.
1 2curl -u username:password http://myhost:8080/rest/api/content/search?cql=space=TEST
The previous example is a simple query, if your query is more complicated you can use the following example:
1 2curl -u username:password -G "http://myhost:8080/context/rest/api/content/search" \ --data-urlencode "cql=(type=page and space=DEV) OR (creator=admin and type=blogpost)" \ | python -m json.tool
To perform an advanced search:
Add your query using the fields, operators, and field values or functions as the value for the CQL query parameter.
Execute a GET request on the resource, you can apply expansions and pagination as you would normally do in the Confluence REST API.
You can use the CONTAINS operator to use Lucene's text-searching features when performing searches on these fields:
For details, see the page on Performing text searches.
To enforce the precedence of operators, you can use parentheses in complex CQL statements.
For example, if you want to find all pages in the Developer space as well as all blog posts created by the the system administrator (bobsmith), you can use parentheses to enforce the precedence of the boolean operators in your query. For example:
1 2(type=page and Space=DEV) OR (creator=bobsmith and type=blogpost)
Note: if you do not use parentheses, the statement will be evaluated left to right.
You can also use parentheses to group clauses, so that you can apply the NOT operator to the group.
A keyword in CQL is a word or phrase that:
See the detailed examples for each keyword next.
Used to combine multiple clauses, allowing you to refine your search.
Note: to control the order in which clauses are executed, you can use parentheses.
Find all blogposts with the label "performance".
1 2label = "performance" and type = "blogpost"
Find all pages created by jsmith in the DEV space.
1 2type = page and creator = jsmith and space = DEV
Find all content that mentions jsmith but was not created by jsmith.
1 2mention = jsmith and creator != jsmith
Used to combine multiple clauses, allowing you to expand your search.
Note: to control the order in which clauses are executed, you can use parentheses. Also see IN, which can be a more convenient way to search for multiple values of a field.)
Find all content in the IDEAS space or with the label idea.
1 2space = IDEAS or label = idea
Find all content last modified before the start of the year or with the label needs\_review
.
1 2lastModified < startOfYear() or label = needs_review
Used to negate individual clauses or a complex CQL query (a query made up of more than one clause) using parentheses, allowing you to refine your search.
(Note: also see NOT EQUALS ("!="), DOES NOT CONTAIN ("!~") and NOT IN.)
Find all pages with the "cql" label that aren't in the dev space.
1 2label = cql and not space = dev
Used to specify the fields by whose values the search results will be sorted.
By default, the field's own sorting order is used. You can override this by specifying ascending order ("asc
") or descending order ("desc
").
Not all fields support ordering. Generally, ordering is not supported where a piece of content can have multiple values for a field, for instance ordering is not supported on labels.
Find content in the DEV space ordered by creation date.
1 2space = DEV order by created
Find content in the DEV space ordered by creation date with the newest first, then title.
1 2space = DEV order by created desc, title
Find pages created by jsmith ordered by created, then title.
1 2creator = jsmith order by created, title asc
CQL Operators
An operator in CQL is one or more symbols or words that compare the value of a field on its left with one or more values (or functions) on its right, such that only true results are retrieved by the clause. Some operators may use the NOT keyword.
List of Operators:
The "=
" operator is used to search for content where the value of the specified field exactly matches the specified value. (Note: cannot be used with text fields; see the CONTAINS operator instead.)
To find content where the value of a specified field exactly matches multiple values, use multiple "=
" statements with the AND operator.
Find all content that were created by jsmith.
1 2creator = jsmith
Find all content that has the title "Advanced Searching".
1 2title = "Advanced Searching"
The "!=
" operator is used to search for content where the value of the specified field does not match the specified value. (Note: cannot be used with text fields; see the DOES NOT MATCH ("!~
") operator instead.)
Note: typing field != value
is the same as typing NOT field = value
.
Currently a negative expression cannot be the first clause in a CQL statement.
Find all content in the DEV space that was created by someone other than jsmith.
1 2space = DEV and not creator = jsmith
or:
1 2space = DEV and creator != jsmith
Find all content that was created by me but doesn't mention me.
1 2creator = currentUser() and mention != currentUser()
The ">
" operator is used to search for content where the value of the specified field is greater than the specified value.
Cannot be used with text fields.
Note that the ">
" operator can only be used with fields which support range operators (e.g. date fields and numeric fields).
To see a field's supported operators, check the individual field reference.
Find all content created in the last 4 weeks.
1 2created > now("-4w")
Find all attachments last modified since the start of the month.
1 2created > startOfMonth() and type = attachment
The ">=
" operator is used to search for content where the value of the specified field is greater than or equal to the specified value.
Cannot be used with text fields.
Note that the ">=
" operator can only be used with fields which support range operators (e.g. date fields).
To see a field's supported operators, check the individual field reference.
Find all content created on or after 31/12/2008.
1 2created >= "2008/12/31"
The "<
" operator is used to search for content where the value of the specified field is less than the specified value. Cannot be used with text fields.
Note that the "<
" operator can only be used with fields which support range operators (e.g. date fields). To see a field's supported operators, check the individual field reference.
Find all pages lastModified
before the start of the year.
1 2lastModified < startOfYear() and type = page
The "<=
" operator is used to search for content where the value of the specified field is less than or equals to the specified value.
Cannot be used with text fields.
Note that the "<=
" operator can only be used with fields which support range operators (e.g. date fields). To see a field's supported operators,
check the individual field reference.
Find blog posts created in the since the start of the fortnight.
1 2created >= startOfWeek("-1w") and type = blogpost
The "IN
" operator is used to search for content where the value of the specified field is one of multiple specified values.
The values are specified as a comma-delimited list, surrounded by parentheses.
Using "IN
" is equivalent to using multiple EQUALS (=) statements with the OR keyword, but is shorter and more convenient.
That is, typing creator IN (tom, jane, harry)
is the same as typing creator = "tom"
ORcreator = "jane"
OR creator = "harry"
.
Find all content that mentions either jsmith or jbrown or jjones.
1 2mention in (jsmith,jbrown,jjones)
Find all content where the creator or contributor is either Jack or Jill.
1 2creator in (Jack,Jill) or contributor in (Jack,Jill)
The "NOT IN
" operator is used to search for content where the value of the specified field is not one of multiple specified values.
Using "NOT IN
" is equivalent to using multiple
NOT_EQUALS (!=
) statements, but is shorter and more convenient. That is, typing creator NOT IN (tom, jane, harry)
is the same as typing creator != "tom"
AND creator != "jane"
AND creator != "harry"
.
Find all content where the creator is someone other than Jack, Jill or John.
1 2space = DEV and creator not in (Jack,Jill,John)
The "~
" operator is used to search for content where the value of the specified field matches the specified value (either an exact match or a "fuzzy" match -- see examples below). The "~" operator can only be used with text fields, for example:
Note: when using the "~
" operator, the value on the right-hand side of the operator can be specified using Confluence text-search syntax.
Find all content where the title contains the word "win" (or simple derivatives of that word, such as "wins").
1 2title ~ win
Find all content where the title contains a wild-card match for the word "win".
1 2title ~ "win*"
Find all content where the text contains the word "advanced" and the word "search".
1 2text ~ "advanced search"
The "!~
" operator is used to search for content where the value of the specified field is not a "fuzzy" match for the specified value.
The "!~" operator can only be used with text fields, for example:
Note: when using the "!~
" operator, the value on the right-hand side of the operator can be specified using Confluence text-search syntax.
Find all content where the title does not contain the word "run" (or derivatives of that word, such as "running" or "ran").
1 2space = DEV and title !~ run
A field in CQL is a word that represents an indexed property of content in Confluence. In a clause, a field is followed by an operator, that in turn is followed by one or more values (or functions). The operator compares the value of the field with one or more values or functions on the right, such that only true results are retrieved by the clause.
List of Fields:
Search for all pages that are descendants of a given ancestor page. This includes direct child pages and their descendents. It is more general than the parent field.
1 2ancestor
CONTENT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find all descendent pages with a given anscestor page.
1 2ancestor = 123
Find descendants of a group of ancestor pages.
1 2ancestor in (123, 456, 789)
Search for content that is contained in the content with the given ID
1 2container
CONTENT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find attachments contained in a page with the given content ID.
1 2container = 123 and type = attachment
Find content container in a set of pages with the given IDs.
1 2container in (123, 223, 323)
Search for content that have a given content ID. This is an alias of the ID field.
1 2content
CONTENT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find content with a given content ID.
1 2content = 123
Find content in a set of content IDs.
1 2content in (123, 223, 323)
Search for content that was created on, before or after a particular date (or date range).
Note: search results will be relative to your configured time zone (which is by default the Confluence server time zone).
Use one of the following formats:
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
1 2created
DATE
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | Yes | Yes | Yes | Yes | No | No |
Find content created after the 1st September 2014.
1 2created > 2014/09/01
Find content created in the last 4 weeks.
1 2created >= now("-4w")
Search for content that was created by a particular user. You can search by the user's username.
1 2creator
USER
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Find content created by jsmith.
1 2created = jsmith
Find content created by john smith or bob nguyen.
1 2created in (jsmith, bnguyen)
Search for content that was created or edited by a particular user. You can search by the user's username.
1 2contributor
USER
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Find content created by jsmith.
1 2contributor = jsmith
Find content created by john smith or bob nguyen.
1 2contributor in (jsmith, bnguyen)
Search for content that was favorited by a particular user. You can search by the user's username.
Due to security restrictions you are only allowed to filter on the logged in user's favourites. This field is available in both British and American spellings.
1 2favourite
USER
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Find content that is favorited by the current user.
1 2favourite = currentUser()
Find content favorited by jsmith, where jsmith is also the logged in user.
1 2favourite = jsmith
Search for content that has a given content ID.
1 2id
CONTENT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find content with the ID 123.
1 2id = 123
Find content in a set of content IDs.
1 2id in (123, 223, 323)
Search for content that has a particular label.
1 2label
STRING
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find content that has the label finished.
1 2label = finished
Find content that doesn't have the label draft or review.
1 2label not in (draft, review)
Search for content that was last modified on, before, or after a particular date (or date range).
The search results will be relative to your configured time zone (which is by default the Confluence server time zone).
Use one of the following formats:
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
1 2lastmodified
DATE
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | Yes | Yes | Yes | Yes | No | No |
Find content that was last modified on 1st September 2014.
1 2lastmodified = 2014-09-01
Find content that was last modified before the start of the year.
1 2lastmodified < startOfYear()
Find content that was last modified on or after 1st September but before 9am on 3rd September 2014.
1 2lastmodified >= 2014-09-01 and lastmodified < "2014-09-03 09:00"
Search for content that has an instance of the macro with the given name in the body of the content.
1 2macro
STRING
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
none
Find content that has the JIRA issue macro.
1 2macro = jira
Find content that has Table of content macro or the widget macro.
1 2macro in (toc, widget)
Search for content that mentions a particular user. You can search by the user's username.
1 2mention
USER
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Find content that mentions jsmith or kjones.
1 2mention in (jsmith, kjones)
Find content that mentions jsmith.
1 2mention = jsmith
Search for child content of a particular parent page.
1 2parent
CONTENT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Find child pages of a parent page with ID 123.
1 2parent = 123
Search for content that is in a particular Space. By default, this searches by space key. You can also search by category, title, and type (see below).
1 2space
SPACE
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
none
Find content in the development space or the QA space.
1 2space in (DEV, QA)
Find content in the development space.
1 2space = DEV
Search for spaces with a particular space category applied. Categories are used to organise spaces in the space directory. Available from Confluence 6.15 and later.
1 2space.category
STRING
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find spaces that have the category 'development'
1 2space.category = development
Find spaces that don't have the category 'marketing' or 'operations'
1 2space.category not in (marketing, operations)
Search for spaces by space key.
1 2space.key
STRING
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find the space that has the key 'DEV'
1 2space.key = DEV
Find spaces that have either 'MKT' or 'OPS' or 'DEV'
1 2space.key in (MKT, OPS, DEV)
Search for spaces by title.
1 2space.title
TEXT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
No | No | Yes | Yes | No | No | No | No | No | No |
None
Find spaces with titles that match 'Development Team' (fuzzy match)
1 2space.title ~ "Development Team"
Find spaces with titles that don't match "Project" (fuzzy match)
1 2space.title !~ "Project"
Search for spaces of a particular type. Supported content types are:
1 2space.type
TYPE
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
None
Find only personal spaces
1 2space.type = personal
Find only site / global spaces
1 2space.type = global
Find only site / favorite spaces
1 2space.type = favorite
This is a "master-field" that allows you to search for text across a number of other text fields. These are the same fields used by Confluence search user interface.
Note: Confluence text-search syntax can be used with this field.
1 2text
TEXT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
No | No | Yes | Yes | No | No | No | No | No | No |
none
Find content that contains the word Confluence.
1 2text ~ Confluence
Find content in the development space.
1 2space = DEV
Search for content by title, or with a title that contains particular text.
Note: Confluence text-search syntax can be used with this fields when used with the CONTAINS operator ("", "!")
1 2title
TEXT
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | Yes | Yes | No | No | No | No | Yes | Yes |
none
Find content with the title "Advanced Searching using CQL".
1 2title = "Advanced Searching using CQL"
Find content that matches Searching CQL (i.e. a "fuzzy" match).
1 2title ~ "Searching CQL"
Search for content of a particular type. Supported content types are:
1 2type
TYPE
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
none
Find blogposts or pages
1 2type IN (blogpost, page)
Find attachments
1 2type = attachment
Search for content that a particular user is watching. You can search by the user's username.
1 2watcher
USER
= | != | ~ | !~ | > | >= | < | <= | IN | NOT IN |
---|---|---|---|---|---|---|---|---|---|
Yes | Yes | No | No | No | No | No | No | Yes | Yes |
Search for content that you are watching.
1 2watcher = currentUser()
Search for content that the user "jsmith" is watching.
1 2watcher = "jsmith"
Rate this page: