> ## Documentation Index
> Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# start

> Start the session using the configured request

This method sends a start request to the API and logs the session ID
and request details upon successful start.

**Example:**

```python theme={null}
from notte_sdk import NotteClient

client = NotteClient()
session = client.Session()
session.start()
```

> Note that we strongly recommend using the `with` statement to start and stop the session to avoid any issues with session cleanup.

**Example:**

```python theme={null}
from notte_sdk import NotteClient

client = NotteClient()
with client.Session() as session:
    session.execute(type="goto", url="https://www.notte.cc")
```

## Parameters

<ParamField path="tries" type="int" default="3" />

## Returns

`None`

## Raises

* `ValueError`: If the session request is invalid.
