Other Types

Learn more about the other types used when searching for items, boards, documents, users, workspaces, updates, and timeline items via the API

The monday.com search API lets you search for items, boards, documents, users, workspaces, updates, and timeline items in a single query. This page documents the namespace, result, indexed data, and enum types used by the search query.

SearchNamespace

The object returned by the search query. Each field is a separate entity search with its own arguments and result set.

FieldTypeDescription
itemsSearchItemResults!Search for items. See search reference for arguments.
boardsSearchBoardResults!Search for boards. See search reference for arguments.
docsSearchDocResults!Search for documents. See search reference for arguments.
usersSearchUserResults!Search for users. Only available in API versions 2026-10 and later. See search reference for arguments.
workspacesSearchWorkspaceResults!Search for workspaces. Only available in API versions 2026-07 and later. See search reference for arguments.
updatesSearchUpdateResults!Search for updates. Only available in API versions 2026-10 and later. See search reference for arguments.
timeline_itemsSearchTimelineItemResults!Search for timeline items. Only available in API versions 2026-10 and later. See search reference for arguments.

SearchItemResults

Contains the results of an item search.

FieldTypeDescription
results[SearchItemResult!]!List of item search results.

SearchBoardResults

Contains the results of a board search.

FieldTypeDescription
results[SearchBoardResult!]!List of board search results.

SearchDocResults

Contains the results of a document search.

FieldTypeDescription
results[SearchDocResult!]!List of document search results.

SearchItemResult

Contains a single item result from the search query.

FieldTypeDescription
idID!The unique identifier of the item.
indexed_dataSearchIndexedItem!Item data from the search index. Fast but potentially stale.
live_dataItemThe latest item data from the core API. null when the item was deleted, is inaccessible to the caller, or has an indexing lag.

SearchBoardResult

Contains a single board result from the search query.

FieldTypeDescription
idID!The unique identifier of the board.
indexed_dataSearchIndexedBoard!Board data from the search index. Fast but potentially stale.
live_dataBoardThe latest board data from the core API. null when the board was deleted, is inaccessible to the caller, or has an indexing lag.

SearchDocResult

Contains a single document result from the search query.

FieldTypeDescription
idID!The unique identifier of the document.
indexed_dataSearchIndexedDoc!Document data from the search index. Fast but potentially stale.
live_dataDocumentThe latest document data from the core API. null when the document was deleted, is inaccessible to the caller, or has an indexing lag.

SearchUserResults

Contains the results of a user search.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
results[SearchUserResult!]!List of user search results.

SearchUserResult

Contains a single user result from the search query.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!The unique identifier of the user.
indexed_dataSearchIndexedUser!User data from the search index. Fast but potentially stale.
live_dataUserThe latest user data from the core API. null when the user was deleted, is inaccessible to the caller, or has an indexing lag.

SearchWorkspaceResults

Contains the results of a workspace search.

🚧

Only available in API versions 2026-07 and later

FieldTypeDescription
results[SearchWorkspaceResult!]!List of workspace search results.

SearchUpdateResults

Contains the results of an update search.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
results[SearchUpdateResult!]!List of update search results.

SearchWorkspaceResult

Contains a single workspace result from the search query.

🚧

Only available in API versions 2026-07 and later

FieldTypeDescription
idID!The unique identifier of the workspace.
indexed_dataSearchIndexedWorkspace!Workspace data from the search index. Fast but potentially stale.
live_dataWorkspaceThe latest workspace data from the core API. null when the workspace was deleted, is inaccessible to the caller, or has an indexing lag.

SearchUpdateResult

Contains a single update result from the search query.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!The unique identifier of the update.
indexed_dataSearchIndexedUpdate!Update data from the search index. Fast but potentially stale.
live_dataUpdateThe latest update data from the core API. null when the update was deleted, is inaccessible to the caller, or has an indexing lag.

SearchTimelineItemResults

Contains the results of a timeline item search.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
results[SearchTimelineItemResult!]!List of timeline item search results.

SearchTimelineItemResult

Contains a single timeline item result from the search query.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!The unique identifier of the timeline item.
indexed_dataSearchIndexedTimelineItem!Timeline item data from the search index. Fast but potentially stale.
live_dataTimelineItemThe latest timeline item data from the core API. null when the timeline item was deleted, is inaccessible to the caller, or has an indexing lag.

SearchIndexedItem

Item data stored in the search index. Returned in the indexed_data field of SearchItemResult.

FieldTypeDescription
idID!Item ID.
nameString!Item name.
urlString!URL to view this item.
board_idIDID of the board containing this item.
workspace_idIDID of the workspace containing this item.

SearchIndexedBoard

Board data stored in the search index. Returned in the indexed_data field of SearchBoardResult.

FieldTypeDescription
idID!Board ID.
nameString!Board name.
descriptionStringBoard description.
creator_idIDID of the user who created this board.
workspace_idIDID of the workspace containing this board.
urlString!URL to view this board.

SearchIndexedDoc

Document data stored in the search index. Returned in the indexed_data field of SearchDocResult.

FieldTypeDescription
idID!Document ID.
nameString!Document name.
workspace_idIDID of the workspace containing this document.

SearchIndexedUser

User data stored in the search index. Returned in the indexed_data field of SearchUserResult.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!User ID.
nameString!The user's full name.
emailString!The user's email address.

SearchIndexedWorkspace

Workspace data stored in the search index. Returned in the indexed_data field of SearchWorkspaceResult.

🚧

Only available in API versions 2026-07 and later

FieldTypeDescription
idID!Workspace ID.
nameString!Workspace name.
kindString!Workspace kind (open or closed).
descriptionStringWorkspace description.
stateString!Workspace state (active, archived, or deleted).

SearchIndexedUpdate

Update data stored in the search index. Returned in the indexed_data field of SearchUpdateResult.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!Update ID.
bodyString!HTML-formatted update body.
creator_idID!ID of the user who created the update.
item_idID!ID of the item this update belongs to.
board_idID!ID of the board containing this update.
created_atString!ISO timestamp when the update was created.
updated_atString!ISO timestamp when the update was last modified.

SearchIndexedTimelineItem

Timeline item data stored in the search index. Returned in the indexed_data field of SearchTimelineItemResult.

🚧

Only available in API versions 2026-10 and later

FieldTypeDescription
idID!Timeline item ID.
account_idID!ID of the account that owns this timeline item.
item_idID!ID of the item this timeline item belongs to.
board_idIDID of the board containing this timeline item.
typeString!Timeline item kind (e.g., email, googleCalendar). See TimelineItemKind for possible values.
product_kindString!Product the timeline item originates from (e.g., service, crm). See TimelineItemProductKind for possible values.
titleString!Timeline item title.
summaryString!Timeline item summary.
contentString!Timeline item full content body.
created_atString!ISO timestamp when the timeline item was created.
updated_atString!ISO timestamp when the timeline item was last modified.

CrossEntityDateRangeInput

Optional date range filter available on all entity fields (items, boards, docs, users, workspaces, updates, timeline_items). All fields are optional — provide any combination to narrow results by creation or update timestamps.

FieldTypeDescription
created_beforeISO8601DateTimeFilter results created before this date (e.g., "2026-03-16T08:00:00Z").
created_afterISO8601DateTimeFilter results created after this date.
updated_beforeISO8601DateTimeFilter results updated before this date.
updated_afterISO8601DateTimeFilter results updated after this date.

SearchStrategy

Controls the trade-off between search quality and response time. Pass as the strategy argument to entity fields on SearchNamespace; behavior can vary by entity type.

Enum ValueDescription
SPEEDFaster results with lower search quality.
BALANCEDGood search quality with reasonable response time. Default.
QUALITYBest search quality with higher response time.

TimelineItemProductKind

Identifies the product a timeline item originates from. Pass as the product_kind argument to the timeline_items field on SearchNamespace.

🚧

Only available in API versions 2026-10 and later

Enum ValueDescription
serviceService product.
crmCRM product.

TimelineItemKind

Identifies the kind of timeline item. Pass as the type argument to the timeline_items field on SearchNamespace.

🚧

Only available in API versions 2026-10 and later

Enum ValueDescription
emailEmail communication.
googleCalendarGoogle Calendar event.
outlookCalendarOutlook Calendar event.
zoomZoom meeting.
activityGeneral activity.
customCustom activity.
noteNote.
videoMeetingVideo meeting.
meetingMeeting.
aiAssistantAI assistant interaction.
aiReplyAI-generated reply.
portalPortal interaction.
demoEmailDemo email.
aiSummaryAI-generated summary.
formForm submission.
portfolio_statusPortfolio status update.
sequencesEmailSequences email.
outreachExpertPhoneCallOutreach expert phone call.
mergedTicketsMerged tickets.
customInternalAppCustom internal app interaction.
campaignsCampaign event.
phoneCallPhone call.