Skip to main content
GET
/
conversations
List Conversations
curl --request GET \
  --url https://api.veryfront.com/conversations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "chat",
      "status": "active",
      "message_count": 123,
      "created_by": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "project_id": "<string>",
      "title": "<string>",
      "summary": "<string>",
      "current_node": "<string>",
      "last_message_at": "<string>",
      "metadata": {},
      "archived_at": "<string>"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Query Parameters

project_id
string<uuid>
type
string
cursor
string
limit
integer
Required range: 1 <= x <= 100

Response

Conversation list

data
object[]
required
page_info
object
required

Pagination cursor values for traversing the result set.