Home Library Property Types

Property Types

Browse available property types in the system

House
HOUSE

House

Detached house, cottage, villa or townhouse

Apartment
APARTMENT

Apartment

Apartment or flat in a multi-story building

Garage
GARAGE

Garage

Garage, parking space or car box

Land
LAND

Land

Land plot for construction or agriculture

REST API

Property types API

GET /api/v1/property-types
GET /api/v1/property-types/{code}

Example Response

{
  "property_types": [
    {
      "id": 1,
      "code": "HOUSE",
      "name_key": "property_type.house.name",
      "description_key": "property_type.house.description",
      "image_url": "https://example.com/images/house.svg",
      "is_active": true,
      "sort_order": 1
    },
    {
      "id": 2,
      "code": "APARTMENT",
      "name_key": "property_type.apartment.name",
      "description_key": "property_type.apartment.description",
      "image_url": "https://example.com/images/apartment.svg",
      "is_active": true,
      "sort_order": 2
    }
  ],
  "total": 4
}