Roam Research

roam_search_by_date

Search for blocks or pages based on creation or modification dates. Not for daily pages with ordinal date titles.

Input Schema

NameRequiredDescriptionDefault
end_dateNoOptional: End date in ISO format (YYYY-MM-DD)
include_contentNoWhether to include the content of matching blocks/pages
scopeYesWhether to search blocks, pages, or both
start_dateYesStart date in ISO format (YYYY-MM-DD)
typeYesWhether to search by creation date, modification date, or both

Input Schema (JSON Schema)

{ "properties": { "end_date": { "description": "Optional: End date in ISO format (YYYY-MM-DD)", "type": "string" }, "include_content": { "default": true, "description": "Whether to include the content of matching blocks/pages", "type": "boolean" }, "scope": { "description": "Whether to search blocks, pages, or both", "enum": [ "blocks", "pages", "both" ], "type": "string" }, "start_date": { "description": "Start date in ISO format (YYYY-MM-DD)", "type": "string" }, "type": { "description": "Whether to search by creation date, modification date, or both", "enum": [ "created", "modified", "both" ], "type": "string" } }, "required": [ "start_date", "type", "scope" ], "type": "object" }