Basic Search
To open the global search bar from anywhere in the platform, pressCmd+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
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.- By Type
- By Date
- By Status
Filter results to a specific content type to narrow a broad query quickly.Example: Find all user accounts matching “sarah”:
Example: Find all projects whose name includes “onboarding”:
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:
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.- Run your search with any combination of keywords, operators, and filters.
- Click Save Search in the top-right corner of the results page.
- Give the saved search a name and optionally add it to the sidebar under Quick Links.
- Click Save. Your saved search now appears under Saved Searches in the search bar dropdown.
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
UseGET /users to retrieve and filter workspace members:
Querying Data Records
UseGET /data to retrieve and filter data records across your workspace:
Querying Integrations
UseGET /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.