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

# Search Monitors

Search and filter your monitors details.

<Note>
  External Documentation

  To learn more, visit the [Datadog documentation](https://docs.datadoghq.com/api/latest/monitors/#monitors-search).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                          |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Page      | Page to start paginating from.                                                                                                                                                                                                                                                       |
  | Per Page  | Number of monitors to return per page.                                                                                                                                                                                                                                               |
  | Query     | After entering a search query in your Manage Monitor page use the query parameter value in the<br />URL of the page as value for this parameter.<br /><br />The query can contain any number of space-separated monitor attributes, for instance `query="type:metric status:alert"`. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                     |
  | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Sort      | String for sort order, composed of field and sort order separate by a comma, e.g. `name,asc`. Supported sort directions: `asc`, `desc`. Supported fields:<br /><br />\* `name`<br />\* `status`<br />\* `tags`. |
</div>

## Example Output

```json theme={"dark"}
{
	"metadata": {
		"total_count": 60,
		"page": 0,
		"per_page": 36,
		"page_count": 2
	},
	"counts": {
		"status": [
			{
				"name": "<string>",
				"count": 4
			},
			{
				"name": "<string>",
				"count": 13
			}
		],
		"type": [
			{
				"name": "<string>",
				"count": 24
			},
			{
				"name": "<string>",
				"count": 6
			}
		],
		"tag": [
			{
				"name": "<string>",
				"count": 12
			},
			{
				"name": "<string>",
				"count": 31
			}
		],
		"muted": [
			{
				"name": false,
				"count": 74
			}
		]
	},
	"monitors": [
		{
			"id": 190177618,
			"org_id": 624134,
			"name": "<string>",
			"type": "<string>",
			"classification": "<string>",
			"status": "<string>",
			"overall_state_modified": 3076308499,
			"metrics": [
				"<string>"
			],
			"scopes": [
				"<string>"
			],
			"notifications": [],
			"creator": {
				"id": 953236,
				"name": "<string>",
				"handle": "<string>"
			},
			"muted_until_ts": null,
			"last_triggered_ts": null,
			"query": "<string>",
			"restricted_roles": [],
			"priority": null,
			"created": 1473915751,
			"modified": 2418572570,
			"scheduling_type": "<string>",
			"evaluation_window_type": "<string>",
			"draft_status": "<string>",
			"quality_issues": [
				"<string>"
			],
			"tags": []
		},
		{
			"id": 41925445,
			"org_id": 1395189,
			"name": "<string>",
			"type": "<string>",
			"classification": "<string>",
			"status": "<string>",
			"overall_state_modified": 413560211,
			"metrics": [],
			"scopes": [],
			"notifications": [
				{
					"name": "<string>",
					"handle": "<string>"
				},
				{
					"name": "<string>",
					"handle": "<string>"
				}
			],
			"creator": {
				"id": 2386699,
				"name": "<string>",
				"handle": "<string>"
			},
			"muted_until_ts": null,
			"last_triggered_ts": null,
			"query": "<string>",
			"restricted_roles": [],
			"priority": 0,
			"created": 1903358487,
			"modified": 2241954137,
			"scheduling_type": "<string>",
			"evaluation_window_type": "<string>",
			"draft_status": "<string>",
			"quality_issues": [],
			"tags": [
				"<string>",
				"<string>"
			]
		}
	]
}
```

## Workflow Library Example

[Search Monitors with Datadog and Send Results Via Email](https://library.blinkops.com/workflows/search-monitors-with-datadog-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/search-monitors-with-datadog-and-send-results-via-email/canvas" />
</div>
