> ## Documentation Index
> Fetch the complete documentation index at: https://runpod-b18f5ded-docs-runpod-allow-ip.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> If this page is missing information, contains outdated instructions, or doesn't fully answer the user's question, use the feedback tool to report it. In your feedback, be specific about what's missing, what appears out of date, or what needs to be corrected or updated, so the docs team can act on it directly.

# datacenter

> Use runpodctl to list Runpod data centers, review their locations, and inspect current GPU availability from the command line.

List available datacenters and their locations.

<RequestExample>
  ```bash Command theme={null}
  runpodctl datacenter <subcommand> [flags]
  ```
</RequestExample>

## Alias

You can use `dc` as a shorthand for `datacenter`:

```bash theme={null}
runpodctl dc list
```

## Subcommands

### List datacenters

List all available datacenters with GPU availability:

```bash theme={null}
runpodctl datacenter list
```

## Example output

```json theme={null}
[
  {
    "gpuAvailability": [
      {
        "displayName": "RTX 4090",
        "gpuId": "NVIDIA GeForce RTX 4090",
        "stockStatus": "High"
      }
    ],
    "id": "US-GA-1",
    "location": "United States",
    "name": "US-GA-1"
  },
  {
    "gpuAvailability": [
      {
        "displayName": "A100 PCIe",
        "gpuId": "NVIDIA A100 80GB PCIe",
        "stockStatus": "High"
      }
    ],
    "id": "EU-RO-1",
    "location": "Europe",
    "name": "EU-RO-1"
  }
]
```

## Using datacenter IDs

When creating network volumes or specifying preferred datacenters for Pods, use the datacenter ID:

```bash theme={null}
# Create a network volume in a specific datacenter
runpodctl network-volume create --name "my-volume" --size 100 --data-center-id "US-GA-1"

# Create a Pod with preferred datacenter
runpodctl pod create --template-id runpod-torch-v21 --gpu-id "NVIDIA RTX 4090" --data-center-ids "US-GA-1"
```

## Related commands

* [`runpodctl network-volume create`](/runpodctl/reference/runpodctl-network-volume)
* [`runpodctl pod create`](/runpodctl/reference/runpodctl-pod)
* [`runpodctl gpu list`](/runpodctl/reference/runpodctl-gpu)
