> For the complete documentation index, see [llms.txt](https://docs.zipy.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zipy.ai/zipy-for-mobile/flutter-setup/session-url-retrieval.md).

# Session URL Retrieval

Retrieve the current session URL with Zipy's getCurrentSessionUrl function, enabling you to obtain and utilize the session's URL dynamically. Here is a sample code snippet:

```dart
String a = await Zipy.getCurrentSessionURL();
print(a);
```

This function can be useful for tracking and analyzing user behavior within your application.
