---
title: Fliplet.Apps
description: "List the Fliplet apps the current user can access, and filter between legacy V1 and modern V2 apps."
type: api-reference
tags: [js-api, core, apps]
v3_relevant: true
deprecated: false
category: meta
capabilities: [app list, list apps, v1 apps, v2 apps, available apps, accessible apps]
---
# `Fliplet.Apps`

List the Fliplet apps the current user can access, and filter between legacy V1 and modern V2 apps.

### Get the list of apps the user has got access to

```js
Fliplet.Apps.get().then(function (apps) {
  console.log(apps);
});
```

**Note**: when returning apps, the API will return both **V1** and **V2** apps created with Fliplet. Most likely, you want to filter and use V2 apps only. This can be done by filtering out apps where the boolean `app.legacy` is `true`.