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

# Sessions

> Multi-turn conversations

## Open session

```python theme={null}
session = await client.create_prepaid_session(
    agent_auth="AGENT_AUTHORITY",
    budget_usdc=5.0,
)
```

## Send messages

```python theme={null}
response = await client.send_message_with_budget(
    session_id=session["sessionId"],
    message="Analyze this data",
)
```

## Close

```python theme={null}
result = await client.close_session(session["sessionId"])
```
