# 🌎 Regions

Lists the Regions available for Linode services. Not all services are guaranteed to be available in all Regions.

## Get all Regions

Returns all Regions objects.

```csharp
LinodeClient linodeClient = new LinodeClient("apikey");

// Get All
List<Region> list = await linodeClient.Region.Get();
```

## Get a Region

Returns a specific Region object.

```csharp
LinodeClient linodeClient = new LinodeClient("apikey");

// Set ID
string regionId = "ap-south";

// Get
Region region = await linodeClient.Region.Get(regionId);
```

## JSON

```json
{
    "id": "ap-southeast",
    "label": "Sydney, AU",
    "country": "au",
    "capabilities": [
        "Linodes",
        "NodeBalancers",
        "Block Storage",
        "Kubernetes",
        "Cloud Firewall",
        "Vlans",
        "Block Storage Migrations",
        "Managed Databases"
    ],
    "status": "ok",
    "resolvers": {
        "ipv4": "172.105.166.5, 172.105.169.5, 172.105.168.5, 172.105.172.5, 172.105.162.5, 172.105.170.5, 172.105.167.5, 172.105.171.5, 172.105.181.5, 172.105.161.5",
        "ipv6": "2400:8907::f03c:92ff:fe6e:ec8, 2400:8907::f03c:92ff:fe6e:98e4, 2400:8907::f03c:92ff:fe6e:1c58, 2400:8907::f03c:92ff:fe6e:c299, 2400:8907::f03c:92ff:fe6e:c210, 2400:8907::f03c:92ff:fe6e:c219, 2400:8907::f03c:92ff:fe6e:1c5c, 2400:8907::f03c:92ff:fe6e:c24e, 2400:8907::f03c:92ff:fe6e:e6b, 2400:8907::f03c:92ff:fe6e:e3d"
    }
}
```


---

# 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://linode.ljchuello.com/functions-and-methods/regions.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.
