chats

Find Chats

Retrieves a list of existing chats, with support for pagination and filtering by favorite status, Vercel project, or Git branch. Helps manage and navigate chat history.

get/chats

Query parameters

limitnumber

Specifies the maximum number of chat records to return in a single response. Useful for paginating results when there are many chats.

Specifies the maximum number of chat records to return in a single response. Useful for paginating results when there are many chats.

offsetnumber

Determines the starting point for pagination. Used in conjunction with limit to retrieve a specific page of chat results.

Determines the starting point for pagination. Used in conjunction with limit to retrieve a specific page of chat results.

isFavorite'true' | 'false'

Filters chats by their "favorite" status. Accepts "true" or "false" (as strings, not booleans).

  • "true": returns only chats marked as favorites.
  • "false": returns only non-favorite chats.

Filters chats by their "favorite" status. Accepts "true" or "false" (as strings, not booleans).

  • "true": returns only chats marked as favorites.
  • "false": returns only non-favorite chats.
vercelProjectIdstring

Filters chats by the linked Vercel project ID. Only returns chats associated with the specified Vercel project.

Filters chats by the linked Vercel project ID. Only returns chats associated with the specified Vercel project.

branchstring

Filters chats by the Git branch name. Only returns chats that have an active Git connection with the specified branch as the head.

Filters chats by the Git branch name. Only returns chats that have an active Git connection with the specified branch as the head.

Response

Success

object'list' required

Changes