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>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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