> ## 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 Space Content Labels

Get the labels of the content within a specific space, such as pages and blog posts.

**Required Permission:**

* read:space:confluence.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                 |
  | --------- | ----------------------------------------------------------------------------------------------------------- |
  | Cursor    | The cursor used to paginate through the results.                                                            |
  | ID        | The ID of the space for which content labels should be returned.                                            |
  | Limit     | The maximum number of labels to return in a single response.<br /><br />Values can range from `1` to `250`. |
  | Prefix    | Select the prefix to filter the returned labels by.                                                         |
  | Sort      | The field to sort the results by.                                                                           |
</div>

## Example Output

```json theme={"dark"}
{
	"results": [
		{
			"id": "<string>",
			"name": "<string>",
			"prefix": "<string>"
		}
	],
	"_links": {
		"next": "<string>",
		"base": "<string>"
	}
}
```

## Workflow Library Example

[Get Space Content Labels with Confluence and Send Results Via Email](https://library.blinkops.com/workflows/get-space-content-labels-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-space-content-labels-with-confluence-and-send-results-via-email/canvas" />
</div>
