# Data centres and locations

> The locations Coritan runs services in, what each data centre page lists, and how to pick a location when you order.

Source: https://docs.coritan.com/platform/data-centres/

In the dashboard:

- /data-centers: https://www.coritan.com/data-centers
- /data-centers/…: https://www.coritan.com/data-centers

Two lists describe where Coritan runs. The public [Data Center Facilities](https://www.coritan.com/data-centers) page describes the buildings, and the **Location** section of an order page lists the locations you can order a service in right now.

> [!IMPORTANT]
> The order page is the list to go by. The facility pages and the order pages come from different sources, so a place can be on one and not on the other. To ask about a facility no order page offers, select **Request Information** on its page, which opens the [contact page](https://www.coritan.com/contact) ([Support](/support/) lists the ways to reach sales).

## Facility pages

The [Data Center Facilities](https://www.coritan.com/data-centers) page groups its facilities by region. Select a card to open the facility's page.

| Code | Facility | Operator | Where | Region |
| --- | --- | --- | --- | --- |
| `LON2` | [IP House LON2](https://www.coritan.com/data-centers/lon2-iphouse) | IP House | London Docklands, United Kingdom | Europe |
| `LD8` | [Equinix LD8](https://www.coritan.com/data-centers/equinix-ld8) | Equinix | London Docklands, United Kingdom | Europe |
| `LON1` | [Telehouse West](https://www.coritan.com/data-centers/telehouse-west) | Telehouse | London Docklands, United Kingdom | Europe |
| `DC10` | [Equinix DC10](https://www.coritan.com/data-centers/equinix-dc10) | Equinix | Ashburn, Virginia, United States | North America |
| `KC1` | [NOCIX Kansas City](https://www.coritan.com/data-centers/nocix-kc) | NOCIX | North Kansas City, Missouri, United States | North America |
| `DFW1` | [DataBank DFW1](https://www.coritan.com/data-centers/databank-dfw1) | DataBank | Dallas, Texas, United States | North America |
| `JH1` | [Equinix JH1](https://www.coritan.com/data-centers/equinix-jh1) | Equinix | Johor, Malaysia | Asia Pacific |
| `SG4` | [Equinix SG4](https://www.coritan.com/data-centers/equinix-sg4) | Equinix | Tai Seng, Singapore | Asia Pacific |

## What a facility page lists

The header
: The facility's code and classification, such as `LON2` and `Tier III`, its name and its street address. **All Data Centers** goes back to the list.

**Overview**
: A description of the facility and what it is known for.

**Connectivity**
: The networks, internet exchanges and cloud connections in the building.

**Facility Features**
: Power, cooling, security and on-site staff.

**Facility Specifications**
: **Operator**, **Location**, **Classification** (the tier), **Total Space** and **Power**.

**Certifications**
: The facility's certifications, such as `ISO 27001` and `PCI DSS`.

**Request Information**
: Opens the contact page, to ask the sales team about the facility or arrange a visit.

The figures on these pages describe the building and its operator. They do not say which Coritan products run there.

## Choose a location when you order

- In the **Location** section of the order page, choose a data centre under **Data centres**. Each location shows its airport code, such as `FRA`, its country and its local time. [Order a service](/get-started/order-a-service/#configure-an-instance-or-a-server) walks through the whole page.
- Choose the data centre closest to the people who will use the service. The address the service gets is local to that location's region.
- A location marked **Sold out** has no room for the plan you chose. Room differs by plan, so a different size or hardware tier may still fit.
- A floating IP comes from a pool in one region. Choose a pool in the region where the instance or server you attach it to runs ([IP pools and regions](/floating-ips/pools/)).

## With the API

[`GET /locations`](/api/reference/client/catalog/#op-get-api-v1-locations) lists the active locations. It needs no access token.

```bash
curl https://api.coritan.com/api/v1/locations
```

```json
[
  {
    "id": 1,
    "code": "fra",
    "name": "Frankfurt",
    "country_code": "DE",
    "timezone": "Europe/Berlin",
    "latitude": 50.1109,
    "longitude": 8.6821,
    "lb_region_code": "WEU",
    "sort_order": 10,
    "is_active": true,
    "created_at": "2026-09-01T00:00:00",
    "updated_at": "2026-09-01T00:00:00"
  }
]
```

`code`
: The location's airport code in lower case. An order names its location with this code.

`country_code`
: The two-letter country code, such as `DE`.

`timezone`
: The location's time zone, which the order page uses for its local time.

`lb_region_code`
: The load balancing region the location is in ([Region codes](/websites/load-balancing/reference/#region-codes)).

[`GET /locations/availability`](/api/reference/client/catalog/#op-get-api-v1-locations-availability) says which locations have room for a size, as [Order a service](/get-started/order-a-service/#with-the-api) describes.
