API referencePlayground
Get playground session details
Retrieve detailed information about a specific playground session, including its current status and configuration.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
sessionId*string
Playground session UUID
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/playground/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "success": true, "message": "string", "error": "string", "data": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "workflowId": "43c4fa9b-0cbc-4b57-a121-9d7d46a3eaa4", "name": "Test Session 1", "status": "idle", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "executions": [ { "id": "string", "startedAt": "2019-08-24T14:15:22Z", "status": "running" } ], "metadata": {} }}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.
Get messages from a playground session GET
Retrieve messages from a playground session with optional filtering. Supports polling via the `since` parameter to fetch only new messages.