> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Pages

Retrieve a list of all pages.

**Note:** This action requires permission to access the Confluence site ('Can use' global permission).
For more information about the required permissions refer to [Confluence permissions structure](https://support.atlassian.com/confluence-cloud/docs/what-are-confluence-cloud-permissions-and-restrictions/)

<Note>
  External Documentation

  To learn more, visit the [Confluence documentation](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-get).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                    |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------ |
  | Cursor    | The cursor used to paginate through the results.                                                                               |
  | Limit     | The maximum number of pages to return in a single response. Maximum value is `250`.                                            |
  | Page IDs  | A comma-separated list of page IDs to filter results by.<br /><br />**Note:** A maximum of `250` items can be specified.       |
  | Sort      | Select the primary field for sorting the results. Prefix the value with a minus sign for descending order.                     |
  | Space IDs | A comma-separated list of space IDs used to filter results by.<br /><br />**Note:** A maximum of `100` items can be specified. |
  | Status    | Select the statuses to filter the pages by.                                                                                    |
  | Title     | The page title to filter results by.                                                                                           |
</div>

## Example Output

```json theme={"dark"}
{
	"results": [
		{
			"id": "<string>",
			"status": "current",
			"title": "<string>",
			"spaceId": "<string>",
			"parentId": "<string>",
			"parentType": "page",
			"position": 57,
			"authorId": "<string>",
			"ownerId": "<string>",
			"lastOwnerId": "<string>",
			"subtype": "<string>",
			"createdAt": "<string>",
			"version": {
				"createdAt": "<string>",
				"message": "<string>",
				"number": 19,
				"minorEdit": true,
				"authorId": "<string>"
			},
			"body": {
				"storage": {},
				"atlas_doc_format": {}
			},
			"_links": {
				"webui": "<string>",
				"editui": "<string>",
				"tinyui": "<string>"
			}
		}
	],
	"_links": {
		"next": "<string>",
		"base": "<string>"
	}
}
```

## Workflow Library Example

[List Pages with Confluence and Send Results Via Email](https://library.blinkops.com/workflows/list-pages-with-confluence-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-pages-with-confluence-and-send-results-via-email/canvas" />
</div>
