Skip to main content
Search is one of the fastest ways to navigate a growing workspace. Rather than clicking through menus and project lists, you can type a few characters and jump directly to any project, record, user, or integration in your account. Google indexes all workspace content in real time, so every item is findable the moment it’s created or updated. Whether you’re doing a quick keyword lookup or building a precise query with operators, search keeps everything within reach no matter how large your workspace grows. To open the global search bar from anywhere in the platform, press Cmd+K on macOS or Ctrl+K on Windows and Linux. You can also click the search icon in the top navigation bar. Start typing to see results appear instantly. Google searches across all of the following content types by default:
  • Projects — project names, descriptions, and tags
  • Records — record titles, field values, and attached notes
  • Users — names and email addresses of workspace members
  • Integrations — connected app names and configuration labels
  • Activity — recent events and audit log entries
Results are ranked by relevance and recency, with the most recently modified items weighted higher when query terms match equally across multiple results. Use the arrow keys to navigate the results list and press Enter to open the highlighted item.
Wrap your search terms in double quotes to search for an exact phrase. For example, "Q3 marketing" will only return results that contain that exact string, filtering out results that contain the words separately. This is especially useful when searching for project names or record titles that include common words.

Search Filters

After performing a search, you can refine your results using the filter panel on the left side of the results page. Filters are also available directly in the search bar using the syntax described in the Advanced Search Syntax section below.
Filter results to a specific content type to narrow a broad query quickly.Example: Find all projects whose name includes “onboarding”:
Example: Find all user accounts matching “sarah”:

Advanced Search Syntax

Google supports a set of search operators that let you build highly specific queries directly in the search bar. Operators can be combined freely — just separate them with spaces. Example — combining multiple operators:
This query returns all active records owned by Marcus, tagged with “review”, and modified during the current month.

Saved Searches

If you frequently run the same search query, you can save it for one-click access from the search bar or the sidebar.
  1. Run your search with any combination of keywords, operators, and filters.
  2. Click Save Search in the top-right corner of the results page.
  3. Give the saved search a name and optionally add it to the sidebar under Quick Links.
  4. Click Save. Your saved search now appears under Saved Searches in the search bar dropdown.
To edit or delete a saved search, go to Settings > Saved Searches, find the entry you want to modify, and click Edit or Delete.

Search via API

You can query workspace content programmatically using the Google REST API and integrate results into your own applications. The API exposes dedicated endpoints for each content type, all of which accept filter and pagination parameters to help you locate exactly what you need.

Querying Users

Use GET /users to retrieve and filter workspace members:

Querying Data Records

Use GET /data to retrieve and filter data records across your workspace:

Querying Integrations

Use GET /integrations to list and filter connected integrations:

Common Query Parameters

All list endpoints share the following query parameters for filtering and pagination: Each response returns a JSON object containing a results array and a total count. Every result includes the item’s id, type, name, and relevant metadata fields. See the API Reference for full response schemas, authentication details, and per-endpoint documentation.