All Documents

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Overview

The Craft Space API provides programmatic access to your entire Craft space - the top-level container for all your documents and organizational structure.

Space Structure

A Craft space organizes content through:

  • Folders: Hierarchical folders to organize documents
  • Documents: Individual documents within locations
  • Blocks: The content within documents (text, pages, collections, media)
  • Tasks: Task management across inbox, daily notes, and documents

Key Concepts

Locations: Documents exist in locations. A location is either a folder or one of the built-in locations: 'unsorted' (default for new documents), 'templates', or 'trash' (recently deleted).

Document IDs: A document ID is the same as its root block ID. Use a document ID with GET /blocks to fetch the document's content.

Space Discovery: Use GET /folders to see all locations, then GET /documents to list documents within a specific location.

Document Organization: Documents can be created in, moved between, and deleted from locations. Use folder and document management endpoints to organize your space.

Tasks: Tasks can be managed across the space. Use GET /tasks with scope filters (inbox, active, upcoming, logbook) to retrieve tasks, and other task endpoints to create, update, or delete them.

Development Tips

  • Start with GET /folders to discover all locations in the space
  • Use GET /documents with a location filter to list documents in a specific location
  • Create new locations with POST /folders
  • Use POST /documents to create new documents in a specific location
  • Access document content with GET /blocks?id={documentId}
  • Search across the entire space with GET /documents/search
  • Use PUT /documents/move to move documents between locations
  • Manage tasks with GET /tasks?scope=active to retrieve due tasks, or use other scopes (inbox, upcoming, logbook)

Note for AI

When implementing functionality using this API, always make actual calls to these endpoints and verify the responses. Do not simulate or mock the API interactions or use hard-coded values on the client-side - use the real endpoints to ensure proper functionality and data handling.

IMPORTANT: This is a production server connected to real user data. Only perform testing operations that can be safely rolled back:

  • Safe: Reading data (GET requests), creating test content that you delete immediately after
  • Safe: Modifying content if you can restore it to its original state
  • Safe: Moving blocks if you can move them back to their original position
  • Unsafe: Permanent deletions, modifications without backup, or any changes you cannot reverse

Always verify rollback operations work before considering a test complete.

Fetch Blocks

GET
/blocks

Summary

Fetches content from any document in the space. Use 'id' query parameter to specify which block to fetch.

Use Accept header application/json for structured data, text/markdown for rendered content.

Content Rendering: Text blocks contain markdown formatting and markdown formatted output may include structural tags like <page></page>, etc. When displaying content, consider rendering markdown as formatted text or cleaning up the syntax for plain text display.

Full Space Access: This connection has access to all documents across all locations in the space. Block links and relations within the space are preserved.

Tip: Start with GET /folders to see all locations, then GET /documents to list documents by location. Use document IDs as the 'id' parameter to fetch content.

Query Parameters

date?Date

Fetches the root page of a Daily Note for the specified date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'. Mutually exclusive with 'id' - use this to fetch a Daily Note's root page, or use 'id' to fetch a specific block.

idBlock ID

Fetches a specific page block by its ID. Use this when you want to retrieve a particular block directly. Mutually exclusive with 'date' - omit 'date' entirely when using this parameter.

maxDepth?Max Depth

The maximum depth of blocks to fetch. Default is -1 (all descendants). With a depth of 0, only the specified block is fetched. With a depth of 1, only direct children are returned.

Default-1
fetchMetadata?Fetch Metadata

Whether to fetch metadata (comments, createdBy, lastModifiedBy, lastModifiedAt, createdAt) for the blocks. Default is false.

Response Body

200

Successfully retrieved data

typeType
Allowed Values:"text"
idBlock ID
textStyle?string

h1-h4, body, caption for text blocks. card/page for page blocks with visual styling.

Allowed Values:"card" | "page" | "h1" | "h2" | "h3" | "h4" | "caption" | "body"
textAlignment?string

default is left

Allowed Values:"left" | "center" | "right" | "justify"
font?string
Allowed Values:"system" | "serif" | "rounded" | "mono"
cardLayout?string

Applies for 'card' textStyle. Small and square are for laying out in multi-column (2 or 3 depending on screen size, multi-column is only supported for certain block types, not for text). Regular and large are full width cards.

Allowed Values:"small" | "square" | "regular" | "large"
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"page"
idBlock ID
titleobject
markdownMarkdown

The title of the page block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
textStyle?string

h1-h4, body, caption for text blocks. card/page for page blocks with visual styling.

Allowed Values:"card" | "page" | "h1" | "h2" | "h3" | "h4" | "caption" | "body"
textAlignment?string

default is left

Allowed Values:"left" | "center" | "right" | "justify"
font?string
Allowed Values:"system" | "serif" | "rounded" | "mono"
cardLayout?string

Applies for 'card' textStyle. Small and square are for laying out in multi-column (2 or 3 depending on screen size, multi-column is only supported for certain block types, not for text). Regular and large are full width cards.

Allowed Values:"small" | "square" | "regular" | "large"
contentarray<unknown>

Content of the page block. Array of blocks. Follows the same block schema.

typeType
Allowed Values:"collectionItem"
idBlock ID
titleTitle

The title of the block.

propertiesProperties

The properties of the block.

Empty Object

markdownMarkdown

The title of the collection item

metadata?Block Metadata
contentarray<unknown>

Content of the collection item block's page. Array of blocks. Follows the same block schema.

typeType
Allowed Values:"image"
idBlock ID
urlstring
altText?string
size?string
Allowed Values:"fit" | "fill"
width?string
Allowed Values:"auto" | "fullWidth"
uploaded?boolean
fileSize?number
mimeType?string
aspectRatio?number
previewImageWidth?number
isPreviewImageUploaded?boolean
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"video"
idBlock ID
urlstring
altText?string
size?string
Allowed Values:"fit" | "fill"
width?string
Allowed Values:"auto" | "fullWidth"
uploaded?boolean
fileSize?number
mimeType?string
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"file"
idBlock ID
urlstring
fileName?File Name

The name of the file.

blockLayout?string
Allowed Values:"small" | "regular" | "card"
uploaded?boolean
mimeType?string
fileSize?number
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"drawing"
idBlock ID
urlstring
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"whiteboard"
idBlock ID
url?string
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"table"
idBlock ID
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"collection"
idBlock ID
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"code"
idBlock ID
rawCodeRaw Code

The raw code of the block.

language?string
Allowed Values:"ada" | "bash" | "cpp" | "cs" | "css" | "dart" | "dockerfile" | "matlab" | "go" | "groovy" | "haskell" | "html" | "java" | "javascript" | "json" | "julia" | "kotlin" | "lua" | "markdown" | "objectivec" | "perl" | "php" | "prolog" | "plaintext" | "python" | "r" | "ruby" | "rust" | "scala" | "shell" | "sql" | "swift" | "typescript" | "vbnet" | "xml" | "yaml" | "math_formula" | "other"
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"richUrl"
idBlock ID
urlstring
title?string
description?string
layout?string
Allowed Values:"small" | "regular" | "card"
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
typeType
Allowed Values:"line"
idBlock ID
lineStylestring

pageBreak lineStyle is just a strong visual separator within a page (chunks to page-looking groups visually). It does not affect the page block hierarchy.

Default"regular"
Allowed Values:"strong" | "regular" | "light" | "extraLight" | "pageBreak"
markdownMarkdown

The markdown content of the block.

indentationLevel?Indentation Level

The indentation level of the block.

Range0 <= value <= 5
listStyle?string
Allowed Values:"none" | "bullet" | "numbered" | "toggle" | "task"
decorations?Decorations
color?Color

7-character hex code (e.g., #RRGGBB). Case-insensitive. Auto-adjusted for readability, with dark variant auto-generated.

Match^#[0-9a-fA-F]{6}$
taskInfo?object

only interpreted, if listStyle is 'task'

metadata?Block Metadata
Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Document with nested structure

Insert Blocks

POST
/blocks

Summary

Insert content into any document in the space. Content can be provided as structured JSON blocks. Use position parameter to specify where to insert (via parent blockId or sibling blockId). Returns the inserted blocks with their assigned block IDs for later reference.

Request Body

application/json
blocksNew Blocks

The blocks to insert, as JSON array

positionPosition

JSON object to insert the content at. Use 'date' to target a Daily Note, 'pageId' to target a specific block, or 'siblingId' for relative positioning.

positionstring
Allowed Values:"start" | "end"
pageIdstring

Only page/text/card blocks can be parents. Text blocks auto-convert to page when receiving children.

date?string

ISO YYYY-MM-DD or 'today'/'tomorrow'/'yesterday'. Defaults to 'today'.

Default"today"
positionstring
Allowed Values:"start" | "end"
positionstring
Allowed Values:"before" | "after"
siblingIdstring
markdownMarkdown

The markdown content to insert, which will be converted to a flat list of blocks at insert position. Separate each paragraph and heading with two newlines. Separate each list item with one newline. The first item in any list cannot be empty. Craft-specific tokens are HTML tags.:

  • <callout></callout> for callouts. Can be used to wrap multiple paragraphs/images/etc.
  • <caption></caption> for caption text style. Can be used to wrap a paragraph.
  • <highlight color=''></highlight> for highlights - color is optional. Can only be used inline.
  • <page><pageTitle>Title</pageTitle><content>Content</content></page> for nested page/card structures - where title supports inline formatting, pages can be nested, and content accepts same markdown as top level markdown. Supports <page textStyle='card' cardLayout='small|square|...'> for card styled page blocks.

Special link formats:

  • [text](block://blockId) for block links - links to specific blocks by their ID
  • [text](date://YYYY-MM-DD) for date links - links to daily notes by date
positionPosition

JSON object to insert the content at. Use 'date' to target a Daily Note, 'pageId' to target a specific block, or 'siblingId' for relative positioning.

positionstring
Allowed Values:"start" | "end"
pageIdstring

Only page/text/card blocks can be parents. Text blocks auto-convert to page when receiving children.

date?string

ISO YYYY-MM-DD or 'today'/'tomorrow'/'yesterday'. Defaults to 'today'.

Default"today"
positionstring
Allowed Values:"start" | "end"
positionstring
Allowed Values:"before" | "after"
siblingIdstring

Response Body

200

Successfully created resource

itemsBlocks

Array of blocks

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully inserted blocks with auto-assigned IDs

Delete Blocks

DELETE
/blocks

Summary

Delete content from any document in the space. Removes specified blocks by their IDs.

Request Body

application/json
blockIdsBlock IDs

The IDs of the blocks to delete

Response Body

200

Successfully deleted resource

itemsDeleted Block IDs

Array of deleted block IDs

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully deleted multiple blocks

Update Blocks

PUT
/blocks

Summary

Update content in any document in the space. For text blocks, provide updated markdown content. Only the fields that are provided will be updated.

Request Body

application/json
blocksBlocks to Update

The blocks to update, as JSON array. Only the fields that are provided will be updated.

Response Body

200

Successfully updated resource

itemsBlocks

Array of blocks

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully updated text blocks

Move Blocks

PUT
/blocks/move

Summary

Move blocks to reorder them or move them between any documents across all locations in the space. Returns the moved block IDs.

Request Body

application/json
blockIdsBlock IDs

The IDs of the blocks to move

positionPosition

JSON object to move the content to. Use 'date' to target a Daily Note, 'pageId' to target a specific block, or 'siblingId' for relative positioning.

positionstring
Allowed Values:"start" | "end"
pageIdstring

Only page/text/card blocks can be parents. Text blocks auto-convert to page when receiving children.

date?string

ISO YYYY-MM-DD or 'today'/'tomorrow'/'yesterday'. Defaults to 'today'.

Default"today"
positionstring
Allowed Values:"start" | "end"
positionstring
Allowed Values:"before" | "after"
siblingIdstring

Response Body

200

Successfully moved resource

itemsMoved Block IDs

Array of moved block IDs

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully moved blocks

Search in Document

GET
/blocks/search

Summary

Search within a single document. Use documents_search first to find documents, then this tool for more context with before/after blocks.

Query Parameters

blockIdBlock ID

The block ID (document or page) to search within.

patternPattern

The search patterns to look for. Patterns must follow RE2-compatible syntax, which supports most common regular-expression features (literal text, character classes, grouping alternation, quantifiers, lookaheads, and fixed-width lookbehinds.

caseSensitive?Case Sensitive

Whether the search should be case sensitive. Default is false.

beforeBlockCount?Before Block Count

The number of blocks to include before the matched block.

Default5
afterBlockCount?After Block Count

The number of blocks to include after the matched block.

Default5

Response Body

200

Successfully retrieved data

itemsSearch Matches

Array of search matches with structured context

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Search across Documents

GET
/documents/search

Summary

Search content across all documents in the space using relevance-based ranking. Supports flat date filter fields (createdDateGte, createdDateLte, lastModifiedDateGte, lastModifiedDateLte, dailyNoteDateGte, dailyNoteDateLte) for time-based queries and location object for filtering by folder.

  • Searches the entire space (all locations)
  • Relevance-based ranking (top 20 results)
  • Content snippets with match highlighting
  • Filter by date ranges or location

Example Use Cases:

  • Find all mentions of a topic anywhere in the space
  • Search for specific content across all documents
  • Search documents within a specific location or folder

Query Parameters

include?Include

Search terms to include in the search. Can be a single string or array of strings.

regexps?Regular Expressions

Search terms to include in the search. Patterns must follow RE2-compatible syntax, which supports most common regular-expression features (literal text, character classes, grouping alternation, quantifiers, lookaheads, and fixed-width lookbehinds.

documentIds?Document IDs

The document IDs to filter. Cannot be used together with 'location' or 'folderIds'. If not provided, all documents will be searched. Can be a single string or array of strings.

fetchMetadata?Fetch Metadata

Whether to include document metadata (lastModifiedAt, createdAt) in each search result. Default is false.

location?Location

Filter by virtual location: 'unsorted', 'trash', 'templates', or 'daily_notes'. Cannot be used together with 'folderId' or 'documentIds'. If neither 'location' nor 'folderId' is specified, searches/lists all documents.

Allowed Values:"unsorted" | "trash" | "templates" | "daily_notes"
folderIds?Folder IDs

Filter by specific folders (includes subfolders recursively). Cannot be used together with 'location' or 'documentIds'. If neither 'location' nor 'folderIds' is specified, searches all documents. Can be a single string or array of strings.

createdDateGte?Created Date Gte

Only include documents created on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

createdDateLte?Created Date Lte

Only include documents created on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

lastModifiedDateGte?Modified Date Gte

Only include documents modified on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

lastModifiedDateLte?Modified Date Lte

Only include documents modified on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

dailyNoteDateGte?Daily Note Date Gte

Only include daily notes on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

dailyNoteDateLte?Daily Note Date Lte

Only include daily notes on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

Response Body

200

Successfully retrieved data

itemsSearch Matches

Array of individual search matches across documents, ordered by document relevance

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

List Collections

GET
/collections

Summary

List all collections across the entire space. Returns collections from all documents regardless of their location.

Query Parameters

documentIds?Document IDs

The document IDs to filter. If not provided, collections in all documents will be listed. Can be a single string or array of strings.

Response Body

200

Success

itemsCollections

Array of collections in the specified documents

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Collections list with document IDs

Get Collection Schema

GET
/collections/{collectionId}/schema

Summary

Get collection schema in JSON Schema format

Path Parameters

collectionIdstring

Query Parameters

format?Format

The format to return the schema in. Default: json-schema-items. - 'schema': Returns the collection schema structure that can be edited - 'json-schema-items': Returns JSON Schema for addCollectionItems/updateCollectionItems validation

Default"json-schema-items"
Allowed Values:"schema" | "json-schema-items"

Response Body

200

Successfully retrieved data

response?unknown
Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Get Collection Items

GET
/collections/{collectionId}/items

Summary

Get all items from a collection

Path Parameters

collectionIdstring

Query Parameters

maxDepth?Max Depth

The maximum depth of nested content to fetch for each collection item. Default is -1 (all descendants). With a depth of 0, only the item properties are fetched without nested content.

Default-1

Response Body

200

Successfully retrieved data

itemsCollection Items

Array of items in the collection.

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Collection items with properties and content

Add Collection Items

POST
/collections/{collectionId}/items

Summary

Add new items to a collection. Two-way relations are synced automatically in the background - only set one side for consistency.

Path Parameters

collectionIdstring

Request Body

application/json
itemsItems to Add

Items to add to the collection. Each item should match the collection's schema (properties will be validated at runtime).

allowNewSelectOptions?Allow New Select Options

Allow adding new options to select properties. When true, new values will be automatically added to the collection schema. Never add new option values without explicit user intent.

Response Body

200

Successfully created resource

itemsSuccessfully Added Items

Array of successfully added items

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully added collection items

Delete Collection Items

DELETE
/collections/{collectionId}/items

Summary

Delete collection items (also deletes content inside items)

Path Parameters

collectionIdstring

Request Body

application/json
idsToDeleteIDs to Delete

IDs of the items to delete from the collection.

Response Body

200

Successfully deleted resource

itemsDeleted Item IDs

Array of successfully deleted item IDs

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully deleted collection items

Update Collection Items

PUT
/collections/{collectionId}/items

Summary

Update collection items. Two-way relations are synced automatically in the background - only set one side for consistency.

Path Parameters

collectionIdstring

Request Body

application/json
itemsToUpdateItems to Update

Items to update in the collection. Each item should have an id and optionally properties matching the collection's schema (properties will be validated at runtime).

allowNewSelectOptions?Allow New Select Options

Allow adding new options to select properties. When true, new values will be automatically added to the collection schema. Never add new option values without explicit user intent.

Response Body

200

Successfully updated resource

itemsSuccessfully Updated Items

Array of successfully updated items

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully updated collection items

List Documents

GET
/documents

Summary

List documents in the space. Without location or folderIds filters, returns ALL documents (may be large). Recommended: use GET /folders first to see available locations and document counts.

Query Parameters

location?Location

Filter by virtual location: 'unsorted', 'trash', 'templates', or 'daily_notes'. Cannot be used together with 'folderId' or 'documentIds'. If neither 'location' nor 'folderId' is specified, searches/lists all documents.

Allowed Values:"unsorted" | "trash" | "templates" | "daily_notes"
folderId?Folder ID

Filter by specific folder (includes subfolders recursively). Cannot be used together with 'location' or 'documentIds'. If neither 'location' nor 'folderId' is specified, lists all documents.

fetchMetadata?Fetch Metadata

Whether to include metadata (lastModifiedAt, createdAt) in the response. Default is false.

createdDateGte?Created Date Gte

Only include documents created on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

createdDateLte?Created Date Lte

Only include documents created on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

lastModifiedDateGte?Modified Date Gte

Only include documents modified on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

lastModifiedDateLte?Modified Date Lte

Only include documents modified on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

dailyNoteDateGte?Daily Note Date Gte

Only include daily notes on or after this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

dailyNoteDateLte?Daily Note Date Lte

Only include daily notes on or before this date. Accepts ISO format YYYY-MM-DD or relative dates: 'today', 'tomorrow', 'yesterday'.

Response Body

200

Success

itemsDocuments

Array of documents in the specified location

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Create Documents

POST
/documents

Summary

Create one or more documents in the space. Specify location as 'unsorted' (default), 'templates', or provide a folderId. Cannot create in 'trash'.

Request Body

application/json
documentsDocuments

Array of documents to create

destination?Destination

Where to create the documents. Cannot be trash. Default is unsorted. Use { destination: "unsorted" | "templates" } or { folderId: "..." }.

Move to unsorted or templates

Move to a specific folder

folderIdFolder ID

The ID of the destination folder

Response Body

200

Successfully created resource

itemsCreated Documents

Array of created documents with their IDs, titles, and clickable links

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully created documents

Delete Documents

DELETE
/documents

Summary

Soft-delete documents by moving them to trash. Use documents_move to restore.

Request Body

application/json
documentIdsDocument IDs

The IDs of the documents to delete (soft-delete to trash)

Response Body

200

Successfully deleted resource

itemsDeleted Document IDs

Array of IDs of the deleted documents

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully deleted documents

Move Documents

PUT
/documents/move

Summary

Move documents between locations in the space. Destination cannot be 'trash' - use documents_delete instead. Use this to restore documents from trash. Note: Daily notes cannot be moved.

Request Body

application/json
documentIdsDocument IDs

The IDs of the documents to move

destinationDestination

Where to move the documents. Use { destination: "unsorted" | "templates" } or { folderId: "..." }. To delete, use DELETE /documents.

Move to unsorted or templates

Move to a specific folder

folderIdFolder ID

The ID of the destination folder

Response Body

200

Successfully moved resource

itemsMoved Documents

Array of moved documents with their new destinations

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully moved documents

List Folders

GET
/folders

Summary

Get all locations in the space with document counts. Returns built-in locations (Unsorted, Trash, Templates) and user-created folders with their hierarchical structure.

Response Body

200

Success

itemsFolders

Hierarchical folder tree including virtual folders (unsorted, trash, templates)

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Complete folder hierarchy with document counts

Create Folders

POST
/folders

Summary

Create one or more folders. Supports creating at root level or nested inside existing folders. Cannot create inside built-in locations.

Request Body

application/json
foldersFolders

Array of folders to create

Response Body

200

Successfully created resource

itemsCreated Folders

Array of created folders with their IDs

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully created folders with assigned IDs

Delete Folders

DELETE
/folders

Summary

Delete folders. Documents and subfolders are moved to the parent folder, or Unsorted if deleting a top-level folder. Cannot delete built-in locations.

Request Body

application/json
folderIdsFolder IDs

The IDs of the folders to delete. Folders must be empty.

Response Body

200

Successfully deleted resource

itemsDeleted Folder IDs

Array of IDs of the deleted folders

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully deleted folder IDs

Move Folders

PUT
/folders/move

Summary

Move folders within the hierarchy. Supports moving to root or inside another folder. Cannot move built-in locations.

Request Body

application/json
folderIdsFolder IDs

The IDs of the folders to move

destinationDestination

Where to move the folders. Use { destination: "root" } for top-level, or { parentFolderId: "..." } for nested.

Move folder to root level

Move folder inside another folder

parentFolderIdParent Folder ID

The ID of the parent folder

Response Body

200

Successfully moved resource

itemsMoved Folders

Array of moved folders with their new destinations

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Successfully moved folders to new locations

Get Tasks

GET
/tasks

Summary

Retrieve tasks from across the space. Tasks are organized into inbox, active, upcoming, logbook, and document categories. Use scope='document' with documentId to get tasks from a specific document.

Query Parameters

scopeScope

Filter tasks by scope: - 'active': Active tasks (due before now, not completed/cancelled) - 'upcoming': Upcoming tasks (scheduled after now) - 'inbox': Tasks in the task inbox - 'logbook': Tasks in the task logbook (completed/cancelled) - 'document': Tasks in a specific document (requires documentId)

Allowed Values:"active" | "upcoming" | "inbox" | "logbook" | "document"
documentId?Document ID

Required when scope is 'document'. The ID of the document to list tasks from.

Response Body

200

Successfully retrieved data

itemsTasks

Array of tasks matching the query scope

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Active tasks with schedule dates

Add Tasks

POST
/tasks

Summary

Create new tasks in inbox, daily notes, or specific documents. Location types: 'inbox', 'dailyNote' (with date), or 'document' (with documentId). Tasks can include schedule dates and deadlines.

Request Body

application/json
tasksTasks to Add

Tasks to create. Each task will be added to the top of the target location.

Response Body

200

Successfully created resource

itemsSuccessfully Added Tasks

Tasks that were successfully added

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Tasks successfully added

Delete Tasks

DELETE
/tasks

Summary

Delete tasks by their IDs from any location in the space.

Request Body

application/json
idsToDeleteIDs to Delete

IDs of the tasks to delete. Tasks can be deleted from any location in the space (inbox, logbook, daily notes, or regular documents).

Response Body

200

Successfully deleted resource

itemsSuccessfully Deleted Task IDs

IDs of tasks that were successfully deleted

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Tasks successfully deleted

Update Tasks

PUT
/tasks

Summary

Update existing tasks across the space. Can modify task content, state, schedule dates, deadlines, and location (to move tasks). Location types: 'inbox', 'dailyNote' (with date), or 'document' (with documentId). Marking inbox tasks as done/canceled moves them to logbook.

Request Body

application/json
tasksToUpdateTasks to Update

Tasks to update. Each task must have an id and optionally fields to update.

Response Body

200

Successfully updated resource

itemsSuccessfully Updated Tasks

Tasks that were successfully updated

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Tasks successfully updated

Upload File

POST
/upload

Summary

Upload a file (image, video, or document) and insert it at the specified position. Requires explicit target (pageId, siblingId, or date). Send raw binary data in request body with Content-Type header. This is an experimental API, expect breaking changes.

Query Parameters

positionPosition

Where to insert: 'start' or 'end' for page/date positions, 'before' or 'after' for sibling positions.

Allowed Values:"start" | "end" | "before" | "after"
pageId?Page ID

Page block ID to insert into. Required when position is 'start' or 'end' (unless date is specified).

date?Date

Daily note date. Accepts 'today', 'yesterday', 'tomorrow', or ISO date (YYYY-MM-DD). Use with position 'start' or 'end'.

siblingId?Sibling ID

Block ID to insert relative to. Required when position is 'before' or 'after'.

Request Body

application/octet-stream
bodyfile
Formatbinary

Response Body

200

Success

blockIdstring

The ID of the created block

assetUrlstring

The URL to access the uploaded asset

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Add comments

POST
/comments

Summary

Add comments to blocks. This is an experimental endpoint, expect breaking changes.

Request Body

application/json
commentsarray<object>

List of comments to add.

Response Body

200

Successfully created resource

commentIdstring

The ID of the created comment

Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here

Comments successfully created

Get Connection Info

GET
/connection

Summary

Returns connection metadata including space ID, timezone, current time, and URL templates for constructing deep links to blocks. This is an experimental API, expect breaking changes.

Response Body

200

Successfully retrieved data

spaceobject
utcobject
urlTemplatesobject
Try it out?

Create an API connection in the Imagine tab in Craft, and paste your API URL here