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

Retrieves a database object using the ID specified in the request path.

<Note>
  External Documentation

  To learn more, visit the [Notion documentation](https://developers.notion.com/reference/retrieve-a-database).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                                                                                                                                                                                                               |
  | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Database ID | The ID of the database you want to retrieve. <br />Note: Only databases with titles will appear in the autofill. If the relevant database name does not appear, manually add it's ID instead. <br />The ID can be found in the suffix of the database's web link, e.g. the database in link `https://www.notion.so/d132f3904fbc45329chjc7b1d52661e5` will have the id `d132f3904fbc45329chjc7b1d52661e5`. |
</div>

## Example Output

```json theme={"dark"}
{
	"object": "<string>",
	"id": "<string>",
	"cover": {
		"type": "<string>",
		"external": {
			"url": "<string>"
		}
	},
	"icon": {
		"type": "<string>",
		"emoji": "<string>"
	},
	"created_time": "2023-02-06T16:58:33.347Z",
	"created_by": {
		"object": "<string>",
		"id": "<string>"
	},
	"last_edited_by": {
		"object": "<string>",
		"id": "<string>"
	},
	"last_edited_time": "2007-02-18T03:47:13.622Z",
	"title": [
		{
			"type": "<string>",
			"text": {
				"content": "<string>",
				"link": null
			},
			"annotations": {
				"bold": false,
				"italic": false,
				"strikethrough": false,
				"underline": false,
				"code": false,
				"color": "<string>"
			},
			"plain_text": "<string>",
			"href": null
		}
	],
	"description": [],
	"is_inline": false,
	"properties": {
		"user": {
			"id": "<string>",
			"name": "<string>",
			"type": "<string>",
			"rich_text": {}
		},
		"status": {
			"id": "<string>",
			"name": "<string>",
			"type": "<string>",
			"rich_text": {}
		},
		"channel name": {
			"id": "<string>",
			"name": "<string>",
			"type": "<string>",
			"title": {}
		}
	},
	"parent": {
		"type": "<string>",
		"page_id": "<string>"
	},
	"url": "<string>",
	"public_url": null,
	"archived": false,
	"in_trash": false,
	"request_id": "<string>"
}
```

## Workflow Library Example

[Get Database with Notion and Send Results Via Email](https://library.blinkops.com/workflows/get-database-with-notion-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-database-with-notion-and-send-results-via-email/canvas" />
</div>
