> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/content/search",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Searching content

> Use content search with facets to quickly find specific dashboards, workbooks, and folders in your Omni instance.

Content search provides powerful filtering capabilities to help you quickly find specific content in your Omni instance. With search facets, you can narrow down results by various criteria.

## Accessing search

To access content search, click the **search bar** at the top of the page:

<img src="https://mintcdn.com/omni-e7402367/pkpeQy7-g_T7nruv/content/images/content-search-with-facets.png?fit=max&auto=format&n=pkpeQy7-g_T7nruv&q=85&s=f73716f299da23a8a0fcc72f8105f57a" alt="" width="2882" height="302" data-path="content/images/content-search-with-facets.png" />

<Note>
  Only content that the searching user has access to will be returned in results.
</Note>

## Refining results with facets

Content search supports the following facets, which you can combine to refine your search:

<ParamField path="creator:">
  Filter results to content created by a specific user.

  **Example**: `creator:john` shows content created by users named John.
</ParamField>

<ParamField path="in:">
  Filter results to content directly inside a specific folder, scoping your search to a particular area of your content hierarchy.

  **Example**: `in:Marketing`
</ParamField>

<ParamField path="label:">
  Filter results to content with a specific [label](/content/organize#labels) attached.

  **Example**: `label:Marketing` shows content tagged with the Marketing label.
</ParamField>

<ParamField path="type:">
  Filter results by content type. Supported types: `dashboard`, `workbook`, `folder`.

  **Example**: `type:dashboard` shows only dashboards.
</ParamField>

<ParamField path="favorited:">
  Filter results to content favorited by a specific user. This helps you find content that you or your colleagues have marked as important.

  **Example**: `favorited:jane`
</ParamField>

<ParamField path="verified:">
  Filter results by verification status. To be verified, the content must have a label with the [**Verified** option](/content/organize#verified) applied.

  **Example**: `verified:true` shows only verified content; `verified:false` shows only unverified content.
</ParamField>

## Using facets in search

To use search facets, type the facet name followed by a colon in the search box. As you type, Omni will suggest relevant options based on the facet type. You can combine multiple facets to create precise search queries.

For example, to find all verified dashboards created by a specific user in your Marketing folder, you could search for:

```text title="Find verified dashboards by Jane in Marketing folder" theme={null}
type:dashboard creator:jane in:Marketing verified:true
```

## Facet examples

```text title="Find verified workbooks with a Sales label" theme={null}
type:workbook verified:true label:Sales
```

```text title="Find all content favorited by Blobby in the Product folder" theme={null}
favorited:blobby in:Product
```

```text title="Find all content created by Blob Ross" theme={null}
creator:Blob Ross
```
