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.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
sessionId*string
Playground session UUID
Format
uuidmessageId*string
Message UUID
Format
uuidResponse 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": {} }}Delete a playground session DELETE
Permanently delete a playground session and all its messages. This action cannot be undone.
Get message status GET
Retrieve only the status of a message (lightweight endpoint for polling). Useful for checking if message processing is complete without fetching full message data.