cURL
curl --request GET \ --url https://api.veryfront.com/conversations/{id}/messages \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "conversationId": "<string>", "seq": 123, "role": "<string>", "parts": [ {} ], "status": "<string>", "createdAt": "<string>", "parentId": "<string>", "createdBy": "<string>", "model": "<string>", "tokenUsage": null, "finishReason": "<string>", "costCredits": "<string>", "editedAt": "<string>", "idempotencyKey": "<string>", "metadata": null, "updatedAt": "<string>" } ], "hasMore": true, "nextCursor": 123 }
Lists messages in a conversation, paginated by sequence number
Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.
Conversation ID
After sequence number
Page size (default 50, max 100)
1 <= x <= 100
Message list
Show child attributes