---
title: "List Command"
manual: "Content Blocks"
version: "main"
permalink: "https://docs.typo3.org/permalink/friendsoftypo3/content-blocks:command-list@main"
source: "Commands/List/Index.rst"
rendered: "2026-09-22T14:15:39+00:00"
---

# List Command {#command-list}

The command `content-blocks:list` lists all loaded Content Blocks inside
a table.

## Options {#options}

-   **order**

    -   *Required:* false
    -   *Type:* string
    -   *Shortcut:* o

    `vendor`, `name`, `table`, `type-name`, `content-type` or `extension`

This will give you an overview of all available Content Blocks:

```bash
vendor/bin/typo3 content-blocks:list
```

Alternatively, you can specify a different order in which to sort the result:

```bash
vendor/bin/typo3 content-blocks:list --order content-type
```

Example output:

```bash
+-----------+-------------------+-------------------------+-----------------+-----------------------------+
| vendor    | name              | extension               | content-type    | table                       |
+-----------+-------------------+-------------------------+-----------------+-----------------------------+
| example   | tabs              | content_blocks_examples | Content Element | tt_content                  |
| example   | accordion         | content_blocks_examples | Content Element | tt_content                  |
| example   | card-group        | content_blocks_examples | Content Element | tt_content                  |
| example   | cta               | content_blocks_examples | Content Element | tt_content                  |
| example   | icon-group        | content_blocks_examples | Content Element | tt_content                  |
| example   | imageslider       | content_blocks_examples | Content Element | tt_content                  |
| example   | example-page-type | content_blocks_examples | Page Type       | pages                       |
| hov       | record1           | content_blocks_examples | Record Type     | tx_hov_domain_model_record1 |
| hov       | record2           | content_blocks_examples | Record Type     | tx_hov_domain_model_record1 |
| hov       | notype            | content_blocks_examples | Record Type     | tx_hov_domain_model_notype  |
+-----------+-------------------+-------------------------+-----------------+-----------------------------+
```
