---
title: "List Data Stores"
method: GET
path: "/cloud/v2/universes/{universe_id}/data-stores"
tags: ["Data and memory stores"]
---

# List Data Stores

`GET /cloud/v2/universes/{universe_id}/data-stores`

Returns a list of data stores.

Data stores scheduled for permanent deletion are omitted from the results
by default (or when `showDeleted` is set to `false`). When this is the
case, the operation will check up to 512 data stores. If all checked data
stores are deleted, it will return an empty list with a page token to
continue iteration.

## Path parameters

- `universe_id` string, required

## Query parameters

- `maxPageSize` integer
- `pageToken` string
- `filter` string
- `showDeleted` boolean

## Response `200`

OK

- ListDataStoresResponse — A list of DataStores in the parent collection.
  - `dataStores` DataStore[] — The DataStores from the specified Universe.
    - `path` string — The resource path of the data store. Format: `universes/{universe_id}/data-stores/{data_store_id}`
    - `createTime` string, date-time — The timestamp when the data store was created.
    - `expireTime` string, date-time — The timestamp when the data store will expire (or did expire). This field is set when the data store is soft-deleted and indicates when it will be permanently removed.
    - `state` 'STATE_UNSPECIFIED' | 'ACTIVE' | 'DELETED', enum — The state of the data store. Possible values: | Value | Description | | --- | --- | | STATE_UNSPECIFIED | The default value. This value is used if the state is omitted. | | ACTIVE | The data store is active. | | DELETED | The data store is deleted. After the expiration time passes, it will be permanently deleted. |
    - `id` string — The ID of the data store. Matches the last segment of the path.
  - `nextPageToken` string — A token that you can send as a `pageToken` parameter to retrieve the next page. If this field is omitted, there are no subsequent pages.

---

[API](https://skmtc.net/roblox/apis/roblox-api.md) · [All operations](https://skmtc.net/roblox/apis/roblox-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/roblox/roblox-api/revisions/ece7c5a315e7/schema)
