Geolagen

Retrieve all locations, in their nested structure

GET https://api.propstack.de/v1/locations

{
  "data": [
    { "id": 12345, "name": "Reinickendorf", "sub_locations": [] },
    {
      "id": 12346,
      "name": "Pankow",
      "sub_locations": [
        { "id": 12347, "name": "Rosental", "sub_locations": [] }
      ]
    }
  ]
}

Last updated