# GET Locations

To create a container registry, you should be aware of available locations where you can create your container registry.

{% hint style="info" %}
**Note:** The retrieved locations are **read-only** and cannot be changed.
{% endhint %}

## Request

```bash
curl --location \
    --request GET \
    'https://api.ionos.com/containerregistries/locations' \
--header 'Authorization: Bearer ${TOKEN}' \
--data-raw ''
```

## Response

**200 OK - Successfully received the locations of a registry**

```json
{
   "id": "locations",
   "type": "collection",
   "href": "",
   "items": [
       {
           "id": "de/fra"
       }
   ]
}
```

### Response fields

| **Field** |   **Type**   |                  **Description**                  | **Example**                                   |
| --------- | :----------: | :-----------------------------------------------: | --------------------------------------------- |
| **id**    |    string    |   The id of the object that has been retrieved.   | `locations`                                   |
| **type**  |    string    | The type of the resource that has been retrieved. | `collection`                                  |
| **ref**   | URL (string) |  URL to the object representation (absolute path) | `https://api.ionos.com/cloudapi/v6/locations` |
| **items** |     array    |       The location of the container registry      | `"id": "de/fra"`                              |

{% hint style="info" %}
**Note:**

* Your values will differ from those in the sample code. Your response will have different `locations`.
* A location is identified by a combination of the following characters:
* A **two-character** value in `Id` represents a country (example: `de`)
* A **three-character** value in `Id` represents a city. The `locationId` is typically based on the IATA code of the city's airport (example: `fra`).
  {% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ionos.com/cloud/containers/private-container-registry/api-howtos/locations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
