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": "user",
      "parts": [
        {
          "type": "text",
          "text": "<string>"
        }
      ],
      "status": "pending",
      "created_at": "<string>",
      "parent_id": "<string>",
      "created_by": "<string>",
      "model": "<string>",
      "token_usage": {},
      "finish_reason": "<string>",
      "cost_credits": "<string>",
      "edited_at": "<string>",
      "idempotency_key": "<string>",
      "metadata": {},
      "updated_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.

Path Parameters

id
string<uuid>
required

Query Parameters

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

Response

Message list

data
object[]
required
page_info
object
required