> ## 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.

# Retrieving call metadata

> Use our API endpoints to list widget calls and fetch metadata.

## List all widget sessions

Use [`GET /liveai/rooms`](/api-reference/list-hosted-sessions) to retrieve widget sessions associated with your account.

```bash BASH theme={null}
curl -X GET "https://lemonslice.com/api/liveai/rooms?page=1&limit=25" \
  -H "X-API-Key: YOUR_API_KEY"
```

<Note>
  Retrieve your API key from the LemonSlice [account page](https://lemonslice.com/agents/api).
</Note>

## Retrieve metadata for a specific call

Use [`GET /liveai/rooms/{session_id}`](/api-reference/get-hosted-session) 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 BASH theme={null}
curl -X GET https://lemonslice.com/api/liveai/rooms/SESSION_ID \
  -H "X-API-Key: YOUR_API_KEY"
```
