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 projects whose name includes “onboarding”:Example: Find all user accounts matching “sarah”:
| Filter Value | Returns |
|---|---|
type:project | Only project records |
type:record | Only data records |
type:user | Only workspace members |
type:integration | Only connected integrations |
type:event | Only activity log entries |
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.| Operator | Description | Example |
|---|---|---|
type: | Filter by content type (project, record, user, integration, event) | type:project |
date: | Filter by creation or modification date; supports values like today, this-week, or ISO date ranges | date:2024-01-01..2024-03-31 |
status: | Filter by item status | status:active |
owner: | Filter by the user who created or owns the item; accepts name or email | owner:jane@example.com |
tag: | Filter by a tag applied to the item | tag:urgent |
"..." | Exact phrase match — wrapping terms in quotes requires them to appear together | "launch checklist" |
- | Exclude a term from results by prefixing it with a minus sign | onboarding -archived |
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:| Parameter | Type | Description |
|---|---|---|
q | string | Keyword search string, URL-encoded. Matched against names and relevant text fields. |
status | string | Filter by item status (e.g. active, archived, error). Optional. |
owner | string | Filter by the owner’s email address or user ID. Optional. |
date_from | string | ISO 8601 date — return only items created or modified on or after this date. Optional. |
date_to | string | ISO 8601 date — return only items created or modified on or before this date. Optional. |
limit | integer | Maximum number of results to return (default: 20, max: 100). |
offset | integer | Pagination offset for retrieving subsequent result pages. |
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.