---
title: "View and download the cloud server list"
sidebar_label: "View and download the server list"
sidebar_position: 8
description: "How to view the cloud server list and export the list in various formats"
---

import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
import {TabItemLabel} from '@selectel/docux/components'
import Formbricks from '@theme/MDXComponents/Formbricks'

# View and download the cloud server list

[You can view the cloud server list](#view-server-list) in the Control panel or via the OpenStack CLI.

In the OpenStack CLI, you can also [download the server list](#download-server-list-via-openstack) in CSV, JSON, or YAML formats.

## View the server list \{#view-server-list}

<Tabs queryString="view-server-list">
  <TabItem value="panel" default>
    <TabItemLabel>
      Control panel
    </TabItemLabel>

    1. In the [Control panel](https://my.selectel.ru/vpc/default/images/), on the top menu, click **Products** and select **Cloud Servers**.
    2. Open the **Servers** tab.
  </TabItem>

  <TabItem value="openstack">
    <TabItemLabel>
      OpenStack CLI
    </TabItemLabel>

    You can use the OpenStack CLI to view the server list only for projects and pools for which you have [configured OpenStack API authorization](/cloud-servers/tools/openstack-cli/configure-openstack-cli.mdx#configure-openstack-in-os).

    The list will include the server ID, name, status, the image and flavor from which the server was created, and the network to which it is connected.

    1. [Open the OpenStack CLI](/cloud-servers/tools/openstack-cli/).
    2. View the server list:

       ```bash
       openstack server list
       ```
  </TabItem>
</Tabs>

## Download the server list via OpenStack CLI \{#download-server-list-via-openstack}

You can use the OpenStack CLI to download the server list only for projects and pools for which you have [configured OpenStack API authorization](/cloud-servers/tools/openstack-cli/configure-openstack-cli.mdx#configure-openstack-in-os).

The list can be downloaded in CSV, JSON, or YAML formats.

The list will include the server ID, name, status, the image and flavor from which the server was created, and the network to which it is connected.

1. [Open the OpenStack CLI](/cloud-servers/tools/openstack-cli/).

2. Download the server list:

   ```bash
   openstack server list -f <file_format> > <file_name>
   ```

   Specify:

   * `<file_format>` — file format: `csv`, `json`, `yaml`;
   * `<file_name>` — name of the file on your local machine containing the downloaded server list.

<Formbricks />
