Skip to main content
GET
/
conversations
/
{id}
/
messages
List messages
curl --request GET \
  --url https://api.veryfront.com/conversations/{id}/messages \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "conversation_id": "<string>",
      "seq": 123,
      "role": "<string>",
      "parts": [
        {}
      ],
      "status": "<string>",
      "created_at": "<string>",
      "parent_id": "<string>",
      "created_by": "<string>",
      "model": "<string>",
      "token_usage": null,
      "finish_reason": "<string>",
      "cost_credits": "<string>",
      "edited_at": "<string>",
      "idempotency_key": "<string>",
      "metadata": null,
      "updated_at": "<string>"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Path Parameters

id
string<uuid>
required

Conversation ID

Query Parameters

cursor
string
limit
integer
Required range: 1 <= x <= 100

Response

Message list

data
object[]
required
page_info
object
required