---
title: influxdb3 import list
description: The influxdb3 import list command lists bulk import jobs in an InfluxDB 3 Enterprise database.
url: https://docs.influxdata.com/influxdb3/enterprise/reference/cli/influxdb3/import/list/
estimated_tokens: 660
product: InfluxDB 3 Enterprise
version: enterprise
publisher: InfluxData
canonical: https://docs.influxdata.com/influxdb3/enterprise/reference/cli/influxdb3/import/list/
date: '2026-07-08T14:40:21+00:00'
lastmod: '2026-07-08T14:40:21+00:00'
---

The `influxdb3 import list` command lists bulk import jobs for a
InfluxDB 3 Enterprise database.

## Usage

```bash
influxdb3 import list [OPTIONS]
```

## Options

|Option|                       |                            Description                             |        Default        |  Environment variable   |
|------|-----------------------|--------------------------------------------------------------------|-----------------------|-------------------------|
|      |  `--host <HOST_URL>`  |            Host URL of the InfluxDB 3 Enterprise server            |`http://127.0.0.1:8181`|  `INFLUXDB3_HOST_URL`   |
|      |`--token <AUTH_TOKEN>` |                        Authentication token                        |                       | `INFLUXDB3_AUTH_TOKEN`  |
|      |`--database <DATABASE>`|                   Database name to list jobs for                   |                       |`INFLUXDB3_DATABASE_NAME`|
|      | `--tls-ca <CA_CERT>`  |             Path to a custom TLS certificate authority             |                       |   `INFLUXDB3_TLS_CA`    |
|      |   `--tls-no-verify`   |Disable TLS certificate verification (not recommended in production)|                       |`INFLUXDB3_TLS_NO_VERIFY`|
| `-h` |       `--help`        |                       Print help information                       |                       |                         |
|      |     `--help-all`      |                  Print detailed help information                   |                       |                         |

## Examples

Replace the following:

* `DATABASE_NAME`:
  the name of the database to list import jobs for
* `AUTH_TOKEN`:
  your authentication token

```bash
influxdb3 import list \
  --host http://localhost:8181 \
  --token AUTH_TOKEN \
  --database DATABASE_NAME
```

#### Related

* [Import data](/influxdb3/enterprise/admin/import-data/)
| Option |  | Description | Default | Environment variable |
| --- | --- | --- | --- | --- |
| Option |  | Description | Default | Environment variable |
|  | --host <HOST_URL> | Host URL of the InfluxDB 3 Enterprise server | http://127.0.0.1:8181 | INFLUXDB3_HOST_URL |
|  | --token <AUTH_TOKEN> | Authentication token |  | INFLUXDB3_AUTH_TOKEN |
|  | --database <DATABASE> | Database name to list jobs for |  | INFLUXDB3_DATABASE_NAME |
|  | --tls-ca <CA_CERT> | Path to a custom TLS certificate authority |  | INFLUXDB3_TLS_CA |
|  | --tls-no-verify | Disable TLS certificate verification (not recommended in production) |  | INFLUXDB3_TLS_NO_VERIFY |
| -h | --help | Print help information |  |  |
|  | --help-all | Print detailed help information |  |  |
