> For the complete documentation index, see [llms.txt](https://manual.docs.microstream.one/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://manual.docs.microstream.one/3.0/data-store/rest-interface/client-gui.md).

# Client GUI

{% hint style="warning" %}
**This is the manual for older MicroStream versions (Version < 5.0).**

**The new documentation (Version >= 5.0) is located at:**

[https://docs.microstream.one/](https://docs.microstream.one/manual)
{% endhint %}

Based on the REST API we provide a client, which serves a convenient web user interface to browse through the storage data.

It is a runnable jar which starts a simple web server which then can be accessed by a browser of your choice.

To download it use maven

{% code title="pom.xml" %}

```markup
<repositories>
    <repository>
        <id>microstream-releases</id>
        <url>https://repo.microstream.one/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>one.microstream</groupId>
        <artifactId>storage.restclient.app</artifactId>
        <version>03.00.00-MS-GA</version>
    </dependency>
</dependencies>
```

{% endcode %}

&#x20;or this direct link:

{% embed url="<https://repo.microstream.one/repository/maven-public/one/microstream/storage.restclient.app/03.00.00-MS-GA/storage.restclient.app-03.00.00-MS-GA.jar>" %}

Start the client. The port parameter is optional, default port is 8080.

```
java -jar storage.restclient.app-03.00.00-MS-GA.jar --port=80
```

Then just open <http://localhost> in your browser, select the base URL of the REST service and click connect.

![](/files/-M525HuVaFhOVwA8GwQ0)

Now you can browse through the data of the storage:

![](/files/-M526MWpbPt2pnspEC4M)

Or view the statistics:

![](/files/-M526D3VdbBUaeBmohqk)
