diff --git a/docs/concepts/search/index.mdx b/docs/concepts/search/index.mdx
index d5337c04a6e91..409baa6914769 100644
--- a/docs/concepts/search/index.mdx
+++ b/docs/concepts/search/index.mdx
@@ -9,7 +9,10 @@ Search is available on several features throughout [sentry.io](https://sentry.io
## Query Syntax
-You'll only need to use query syntax if you're using a Sentry [API](/api/). You'll get pre-populated suggestions once you start typing in your search terms when using the search bar anywhere in [Sentry.io](https://sentry.sentry.io/).
+ You'll only need to use query syntax if you're using a Sentry [API](/api/).
+ You'll get pre-populated suggestions once you start typing in your search
+ terms when using the search bar anywhere in
+ [Sentry.io](https://sentry.sentry.io/).
Search queries are constructed using a `key:value` pattern, with an optional raw search at the end. Each `key:value` pair is a `token` and the optional raw search is itself a single `token`. The `key:value` pair `tokens` are treated as issue or event properties. The optional raw search is treated as a single `token` and searches event titles/messages.
@@ -112,9 +115,9 @@ is:unresolved !user.email:example@customer.com
In the example above, the search query returns all Issues that are unresolved _and_ have not affected the user with the email address `example@customer.com`.
-#### Wildcards
+#### Wildcard Character
-Search supports the wildcard operator `*` as a placeholder for specific characters and strings.
+Search supports the wildcard character `*` as a placeholder for specific characters and strings.
```
browser:"Safari 11*"
@@ -122,7 +125,7 @@ browser:"Safari 11*"
In the example above, the search query will match on `browser` values like `"Safari 11.0.2"`, `"Safari 11.0.3"`, etc.
-You may also combine operators like so:
+You may also combine the wildcard character `*` with other operators like so:
```
!message:"*Timeout"
@@ -130,6 +133,28 @@ You may also combine operators like so:
In the above example, the search query returns results which do not have message values like `ConnectionTimeout`, `ReadTimeout`, etc.
+#### Wildcard Operators
+
+
+ When using these operators, the base wildcard character `*` will be treated as
+ a literal character and not as a wildcard.
+
+
+Sentry's API supports the use of the following wildcard operators when making requests to the API.
+
+For ease of use, we recommend using the wildcard `*` character instead of these operators when manually querying the API.
+
+```
+# contains, and does not contain
+browser:Containschrome, !browser:Containsfire
+
+# starts with, and does not start with
+browser:StartsWithchrome, !browser:StartsWithchrome
+
+# ends with, and does not end with
+browser:EndsWithchrome, !browser:EndsWithfire
+```
+
## Page Filters
Page filters allow you to narrow down the results shown on a page by selecting specific projects, environments, and date ranges. After you've set your filters, they'll persist as you navigate across pages in Sentry.