This endpoint lists all available deployment zones. Zones represent the geographic location from which your deployments are executed.

**Tip**: You can explore and test this endpoint interactively using our [OpenAPI documentation](https://api.deployhq.com/docs).

# List Zones

## URL

```
/zones
```

## HTTP Method

```
GET
```

## Example cURL request

```bash
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
https://test.deployhq.com/zones
```

## Example Response

```json
[
  {
    "identifier": "uk",
    "description": "UK"
  },
  {
    "identifier": "us_east",
    "description": "US-EAST"
  }
]
```

## Fields

| Field | Description |
|-------|-------------|
| `identifier` | The zone identifier used when creating or updating projects |
| `description` | A human-readable description of the zone |
