> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.sare.africa/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.sare.africa/_mcp/server.

# Get Area

GET http://localhost:8080/api/v3/areas/{id}

Reference: https://apidocs.sare.africa/sare-core-api/location/areas/get-area

## Request

### Path parameters

- `id` (string, required)

## Response

### 200

OK

- `code` (integer, required)
- `data` (object, required)
  - `id` (string, required)
  - `name` (string, required)
  - `fleetId` (string, required)
  - `countyId` (string, required)
  - `regionId` (string, required)
  - `countyName` (string, required)
  - `regionName` (string, required)
  - `plateNumber` (string, required)
  - `subRegionId` (string, required)
  - `warehouseId` (string, required)
  - `subRegionName` (string, required)
  - `warehouseName` (string, required)
  - `salesAgentCount` (integer, required)
- `message` (string, required)

## Errors

### 404 Not Found Error

Not Found

- `path` (string, required)
- `status` (integer, required)
- `message` (string, required)

## Examples

**Response**

```json
{
  "code": 200,
  "data": {
    "id": "a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
    "name": "Kilimani",
    "fleetId": "f-01",
    "countyId": "cty0a1b2-3c4d-4e5f-8a9b-0c1d2e3f4a5b",
    "regionId": "c2a1b3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5e",
    "countyName": "Nairobi",
    "regionName": "Nairobi Central",
    "plateNumber": "KDA 123A",
    "subRegionId": "d3b2c4e5-6f7a-4b8c-9d0e-1f2a3b4c5d6e",
    "warehouseId": "w-01",
    "subRegionName": "Kilimani Sub",
    "warehouseName": "Nairobi Warehouse",
    "salesAgentCount": 5
  },
  "message": "Area"
}
```

**SDK Code**

```python Location_Areas_Get Area_example
import requests

url = "http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d"

response = requests.get(url)

print(response.json())
```

```javascript Location_Areas_Get Area_example
const url = 'http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Location_Areas_Get Area_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Location_Areas_Get Area_example
require 'uri'
require 'net/http'

url = URI("http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java Location_Areas_Get Area_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d")
  .asString();
```

```php Location_Areas_Get Area_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d');

echo $response->getBody();
```

```csharp Location_Areas_Get Area_example
using RestSharp;

var client = new RestClient("http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Location_Areas_Get Area_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:8080/api/v3/areas/a1b2c3d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```