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

# getStoredData

> Read persisted Videowise user and live shopping IDs from app storage.

`VideowiseSDK.getStoredData` reads persisted Videowise values from async storage (set automatically when SDK components run). Use it when you need access to these IDs outside of `trackingPixel` — for example custom analytics or deep linking. It is a plain async function and does not need to be called inside `VideowiseSDK.Provider`.

These map to the web cookies `reeview_uid` and `reeview_lsid`. See [Cookies](/cookies).

It returns `Promise<StoredData>`. Individual fields are `null` when missing or expired. Additional fields may be added to this object in future SDK versions.

### Return value (`StoredData`)

| Property | Type             | Description                                                             |
| -------- | ---------------- | ----------------------------------------------------------------------- |
| `uid`    | `string \| null` | Videowise user ID (`reeview_uid`). `null` if missing or expired         |
| `lsId`   | `string \| null` | Live shopping session ID (`reeview_lsid`). `null` if missing or expired |

### Example

```jsx theme={null}
import VideowiseSDK from "@videowisehq/videowise-react-native-sdk";

const { uid, lsId } = await VideowiseSDK.getStoredData();
```

## Related

* [React Native SDK](/sdk/react-native)
* [Tracking pixel (SDK)](/sdk/tracking-pixel)
* [Cookies](/cookies)
* [Live shopping](/live-shopping/overview)
