> ## Documentation Index
> Fetch the complete documentation index at: https://support.visualcare.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Areas

> Retrieve area records from the Visualcare API

Retrieves all area records configured in your Visualcare organisation.

### GET /areas

No query parameters.

**Response:**

```json theme={null}
[
  {
    "AreaId": 1,
    "AreaCode": "EAST",
    "Area": "Eastern Suburbs",
    "Status": "Active"
  }
]
```

**Response fields:**

| Field      | Type    | Example             |
| ---------- | ------- | ------------------- |
| `AreaId`   | integer | `1`                 |
| `AreaCode` | string  | `"EAST"`            |
| `Area`     | string  | `"Eastern Suburbs"` |
| `Status`   | string  | `"Active"`          |

***

[Back to API overview](/api-reference/overview)
