App Logo
dust.tt

List Dust conversations

List the signed-in Dust workspace's conversations, newest first. Returns workspaceId and conversations (sId, title, created, updated, unread, hasError, actionRequired, isRunningAgentLoop, spaceId), plus hasMore and nextCursor for paging. sId is the join key for get_conversation_messages. Pass workspaceId to target a specific workspace when the account belongs to several; it defaults to the first workspace on the account. Paginate with cursor (pass back the nextCursor you were given) rather than an offset — the list is ordered by last update, so an offset would skip or repeat rows as conversations move. Requires being signed in to dust.tt.

Input

limit optional

Max conversations to return (default 30).

Default: 30
cursor optional

Continue a previous listing: pass the nextCursor returned by an earlier call. Omit for the first page.

workspaceId optional

Workspace sId to read. Omit to use the first workspace on the account (returned as workspaceId so you can pin it).

Output

hasMore required

True when more conversations exist past this page.

nextCursor required

Pass as `cursor` to get the next page. Null when hasMore is false.

workspaceId required

The workspace actually read — pass it back as workspaceId to pin subsequent calls.

conversations required

Start building not clicking