---
title: "Feature: #80154 - Retrieve session data in TS"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-80154"
source: "Changelog/8.7/Feature-80154-RetrieveSessionDataInTS.rst"
typo3-version: "8.7"
typo3-major: 8
type: "feature"
issue: 80154
forge: "https://forge.typo3.org/issues/80154"
tags: ["Frontend", "TypoScript"]
rendered: "2026-09-17T21:17:42+00:00"
---

# Feature: #80154 - Retrieve session data in TS {#feature-80154-retrieve-session-data-in-ts}

See [forge#80154](https://forge.typo3.org/issues/80154)

## Description {#description}

As the session API has been modified, it is no longer possible to access
session data from TypoScript by accessing the formerly public property of
the fe_user with:

```typoscript
page.10 = TEXT
page.10.data = TSFE:fe_user|sesData|myext|mydata
```

This is being replaced by a more direct way, which allows for the same functionality:

```typoscript
page.10 = TEXT
page.10.data = session:myext|mydata
```
