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

List and search content.

<Note>
  External Documentation

  To learn more, visit the [Confluence Data Center documentation](https://developer.atlassian.com/server/confluence/rest/v900/api-group-content-resource/#api-rest-api-content-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                          |
  | --------- | ------------------------------------ |
  | Space Key | The space key to find content under. |
  | Title     | The title of the page to find.       |
  | Type      | The content type to return.          |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                                           |
  | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Expand      | A comma-separated list of properties to expand on the content. For more information see [Confluence documentation](https://developer.atlassian.com/server/confluence/rest/v900/api-group-content-resource/#api-rest-api-content-get). |
  | Limit       | The limit of the number of items to return.                                                                                                                                                                                           |
  | Posting Day | The posting day of the blog post. Required for `blogpost` type.                                                                                                                                                                       |
  | Start       | The start point of the collection to return.                                                                                                                                                                                          |
  | Status      | A comma-separated list of statuses the content to be found is in.                                                                                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
{
	"limit": 25,
	"next": "http://localhost:8085/rest/api/../paginate?limit=25\u0026start=50",
	"nextCursor": {
		"cursorType": "string",
		"reverse": false
	},
	"pageRequest": {
		"cursor": {
			"cursorType": "string",
			"reverse": false
		},
		"limit": 0,
		"start": 0
	},
	"prev": "http://localhost:8085/rest/api/../paginate?limit=25\u0026start=0",
	"prevCursor": {
		"cursorType": "string",
		"reverse": false
	},
	"results": [
		{
			"ancestors": [
				null
			],
			"body": {},
			"children": {},
			"container": "",
			"containerRef": {
				"expanded": false,
				"idProperties": {}
			},
			"descendants": {},
			"extensions": {
				"key": "value"
			},
			"history": {
				"contentParentRef": {
					"expanded": false,
					"idProperties": {}
				},
				"contributors": {
					"expanded": false,
					"idProperties": {}
				},
				"createdBy": {
					"displayName": "Joe Smith",
					"profilePicture": {
						"height": 16,
						"isDefault": true,
						"path": "http://www.example.com/path/to/image.png",
						"width": 16
					},
					"type": "string"
				},
				"createdDate": "2020-01-01T00:00:00Z",
				"lastUpdated": {
					"expanded": false,
					"idProperties": {}
				},
				"lastUpdatedRef": {
					"expanded": false,
					"idProperties": {}
				},
				"latest": true,
				"nextVersion": {
					"expanded": false,
					"idProperties": {}
				},
				"nextVersionRef": {
					"expanded": false,
					"idProperties": {}
				},
				"previousVersion": {
					"expanded": false,
					"idProperties": {}
				},
				"previousVersionRef": {
					"expanded": false,
					"idProperties": {}
				}
			},
			"historyRef": {
				"expanded": false,
				"idProperties": {}
			},
			"id": "123456",
			"links": {
				"webui": "https://www.example.com/display/SPACEKEY/My+Page"
			},
			"metadata": {
				"key": "value"
			},
			"operations": [
				{
					"operation": "read",
					"targetType": "page"
				}
			],
			"position": 1,
			"restrictions": {
				"use": {
					"operation": "use",
					"restrictions": []
				}
			},
			"space": {
				"description": {},
				"homepage": {
					"expanded": false,
					"idProperties": {}
				},
				"icon": {
					"expanded": false,
					"idProperties": {}
				},
				"id": 123456,
				"key": "TEST",
				"links": {},
				"metadata": {
					"labels": [
						"label1",
						"label2"
					]
				},
				"name": "Test Space",
				"retentionPolicy": {
					"expanded": false,
					"idProperties": {}
				},
				"status": "current",
				"type": "global"
			},
			"spaceRef": {
				"expanded": false,
				"idProperties": {}
			},
			"status": "current",
			"title": "My Page",
			"type": "page",
			"version": {
				"by": {
					"displayName": "Joe Smith",
					"profilePicture": {
						"height": 16,
						"isDefault": true,
						"path": "http://www.example.com/path/to/image.png",
						"width": 16
					},
					"type": "string"
				},
				"content": {
					"expanded": false,
					"idProperties": {}
				},
				"contentRef": {
					"expanded": false,
					"idProperties": {}
				},
				"hidden": true,
				"message": "A message",
				"minorEdit": true,
				"number": 1,
				"syncRev": "123456",
				"when": "2020-01-01T00:00:00Z"
			},
			"versionRef": {
				"expanded": false,
				"idProperties": {}
			}
		}
	],
	"self": "http://localhost:8085/rest/api/../paginate?limit=25\u0026start=25",
	"start": 25
}
```

## Workflow Library Example

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