Skip to main content

Documentation Index

Fetch the complete documentation index at: https://lemonslice.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

List all widget sessions

Use GET /liveai/rooms to retrieve widget sessions associated with your account.
BASH
curl -X GET "https://lemonslice.com/api/liveai/rooms?page=1&limit=25" \
  -H "X-API-Key: YOUR_API_KEY"
Retrieve your API key from the LemonSlice account page.

Retrieve metadata for a specific call

Use GET /liveai/rooms/{session_id} to retrieve a single widget session’s status. For completed sessions, the response will include additional metadata, like credits used and a transcript of the call.
BASH
curl -X GET https://lemonslice.com/api/liveai/rooms/SESSION_ID \
  -H "X-API-Key: YOUR_API_KEY"