FlowDrop Docs
API referencePlayground

Get a single message

Retrieve a specific message from a playground session by its ID. Returns full message details including status and metadata.

GET
/playground/sessions/{sessionId}/messages/{messageId}

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Path Parameters

sessionId*string

Playground session UUID

Formatuuid
messageId*string

Message UUID

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/playground/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08/messages/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "success": true,  "message": "string",  "error": "string",  "data": {    "id": "be4d854d-d6b3-4242-b2ea-0008b2e059bd",    "sessionId": "fe5304ea-f069-433f-b0bf-945975c0b806",    "role": "user",    "content": "Hello. How are you?",    "timestamp": "2026-01-19T10:03:32+01:00",    "status": "completed",    "sequenceNumber": 1,    "parentMessageId": null,    "nodeId": null,    "metadata": {}  }}