> ## Documentation Index
> Fetch the complete documentation index at: https://docs.motus.lithosai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# motus serve messages

> Retrieve the full conversation history for a session.

Retrieve the full conversation history for a session. This maps directly to `GET /sessions/{id}/messages` described in the [Messages API reference](/reference/api/messages).

## Usage

```bash theme={null}
motus serve messages <url> <id>
```

## Examples

### Get message history

```bash theme={null}
motus serve messages http://localhost:8000 550e8400-e29b-41d4-a716-446655440000
```

```json theme={null}
[
  { "role": "user", "content": "hello" },
  { "role": "assistant", "content": "hi there" }
]
```
