> ## 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.

# Get Label Pages

Get the pages associated with a specific label.

**Required Permission:**

* read:page:confluence.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                |
  | -------------- | ---------------------------------------------------------------------------------------------------------- |
  | Content Format | Select the content format to be returned in the `body` field of the response.                              |
  | Cursor         | The cursor used to paginate through the results.                                                           |
  | ID             | The ID of the label for which pages should be returned.                                                    |
  | Limit          | The maximum number of pages to return in a single response.<br /><br />Values can range from `1` to `250`. |
  | Sort           | Select the field to sort the results by. Prefix the value with a minus sign for descending order.          |
  | Space IDs      | A comma-separated list of space IDs to filter the 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

[Get Label Pages with Confluence and Send Results Via Email](https://library.blinkops.com/workflows/get-label-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/get-label-pages-with-confluence-and-send-results-via-email/canvas" />
</div>
