How to create a property search link on Kvadratko

How to create a property search link on Kvadratko

Any Kvadratko search can be opened as a regular link. This is useful when you want to share a pre-filtered list of properties, or when an AI tool needs to build a link that takes the user straight to relevant listings.

A Kvadratko link has two parts: the base path and additional filters.

Basic link format

The base path looks like this:

https://www.kvadratko.hr/{language}/{transaction}/{type}

https://www.kvadratko.hr/hr/prodaja/stan

https://www.kvadratko.hr/hr/najam/kuca

https://www.kvadratko.hr/en/buy/apartment

https://www.kvadratko.hr/de/kaufen/wohnung

Slugs are language-specific. In Croatian, use prodaja, najam, stan, kuca, zemljiste, poslovni-prostor, garaza and ostalo. In English, use buy, rent, apartment, house, land, commercial, garage and other. In German, use kaufen, mieten, wohnung, haus, grundstueck,

gewerbe, garage and sonstiges.

Location in the link

A location can be added in two ways.

The first option is to add it through the path. In that case, the location is written as a slug, without diacritics and with hyphens instead of spaces.

Example for apartments for sale in the City of Zagreb, in Trešnjevka - Jug, in the Jarun neighborhood:

https://www.kvadratko.hr/en/buy/apartment/grad-zagreb/tresnjevka-jug/jarun

The second option is to add it through query parameters. This is practical when a location is combined with several filters.

Example:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb&SelectedCities=Tre%C5%A1njevka+-+Jug&SelectedSettlements=Jarun

For exact location names, query values and slugs, use the public location list:

https://www.kvadratko.hr/api/data/hierarchy-flat

If you build a link through the path, use the slug field. If you build a link through query parameters, use the query field.

Each location in that list has a name, a query value and a slug. The safest approach is to copy those values exactly.

For locations in the path, the order is always county, then city or city district, then settlement or neighborhood. That is why Maksimir is not /apartment/maksimir, but /apartment/grad-zagreb/maksimir.

The language changes the slugs in the path, but location values in query parameters should still come from the public location list.

Price and area filters

The most common filters are price and area.

Example: apartments in the City of Zagreb from 150000 to 300000 euros:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb&MinPrice=150000&MaxPrice=300000

Example: the same result, but only apartments of at least 50 m²:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb&MinPrice=150000&MaxPrice=300000&MinLivingArea=50

Useful parameters:

MinPrice and MaxPrice for price

MinLivingArea and MaxLivingArea for living area

MinPlotArea and MaxPlotArea for land or plot area

Floor and building

For apartments, floor filters can also be used.

Example: apartments from the third floor and above, excluding the top floor:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Istarska&SelectedCities=Pula&SelectedSettlements=Centar&MinPrice=150000&MaxPrice=450000&MinFloor=3&ExcludeTopFloor=true

Useful parameters:

MinFloor and MaxFloor for the floor range

ExcludeTopFloor=true to exclude the top floor and attic

BuildingTotalFloors for buildings up to a certain total number of floors

Property features

Additional features are added as parameters with the value true.

Example: apartments in Split with an elevator, air conditioning and balcony:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Splitsko-dalmatinska&SelectedCities=Split&HasAirConditioning=true&HasBalcony=true&Elevator=true

For apartment rentals, there is also a filter that hides worker accommodation listings. This is useful when you are looking for a regular apartment to live in, not accommodation for a larger group of workers.

Example:

https://www.kvadratko.hr/en/rent/apartment?HideWorkerAccommodation=true

The same filter can be combined with location, price and other conditions.

Example: apartment rentals in the City of Zagreb without worker accommodation:

https://www.kvadratko.hr/en/rent/apartment?SelectedCounties=Grad+Zagreb&HideWorkerAccommodation=true

Example: apartment rentals in the City of Zagreb up to 1200 euros, without worker accommodation:

https://www.kvadratko.hr/en/rent/apartment?SelectedCounties=Grad+Zagreb&MaxPrice=1200&HideWorkerAccommodation=true

Multiple values for the same filter

To use several values for the same filter, repeat the same query parameter. When the same parameter is repeated, the values work as OR. That means Istarska or Primorsko-goranska, Šikići or Busoler, and so on.

Example: houses in several Pula neighborhoods up to 500000 euros:

https://www.kvadratko.hr/en/buy/house?SelectedCounties=Istarska&SelectedCities=Pula&SelectedSettlements=%C5%A0iki%C4%87i&SelectedSettlements=Busoler&SelectedSettlements=Arsenal&SelectedSettlements=Gregovica&MaxPrice=500000

Example: houses in Istria and Primorje-Gorski Kotar up to 500000 euros:

https://www.kvadratko.hr/en/buy/house?SelectedCounties=Istarska&SelectedCounties=Primorsko-goranska&MaxPrice=500000

Example on the English route: apartments for sale in several coastal counties from 100000 to 300000 euros:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Splitsko-dalmatinska&SelectedCounties=Dubrova%C4%8Dko-neretvanska&SelectedCounties=Zadarska&SelectedCounties=%C5%A0ibensko-kninska&SelectedCounties=Istarska&MinPrice=100000&MaxPrice=300000

Rules for writing links

Use full links that start with https://www.kvadratko.hr/.

Write numbers without thousands separators, for example 150000.

Write Boolean filters as =true.

If you are not sure how a location should be written in the URL, use the public location list.

For sharing a precise search, query parameters are the most practical option. For clean SEO links, a location slug in the path is a good choice.

If you want a simple link, use the path:

https://www.kvadratko.hr/en/buy/apartment/grad-zagreb

If you want precise filters, use query parameters:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb&MinPrice=150000&MaxPrice=300000&MinLivingArea=50

Precise link examples

Apartments for sale in Maksimir from 150000 to 300000 euros, with an elevator, first floor or higher:

https://www.kvadratko.hr/en/buy/apartment/grad-zagreb/maksimir?MinPrice=150000&MaxPrice=300000&Elevator=true&MinFloor=1

The same example using query parameters:

https://www.kvadratko.hr/en/buy/apartment?SelectedCounties=Grad+Zagreb&SelectedCities=Maksimir&MinPrice=150000&MaxPrice=300000&Elevator=true&MinFloor=1

Apartment rentals in Maksimir without worker accommodation:

https://www.kvadratko.hr/en/rent/apartment/grad-zagreb/maksimir?HideWorkerAccommodation=true

Apartments for sale in Jarun up to 350000 euros:

https://www.kvadratko.hr/en/buy/apartment/grad-zagreb/tresnjevka-jug/jarun?MaxPrice=350000

Apartment rentals in the City of Zagreb up to 1200 euros, without worker accommodation:

https://www.kvadratko.hr/en/rent/apartment?SelectedCounties=Grad+Zagreb&MaxPrice=1200&HideWorkerAccommodation=true

Apartments for sale in Pula, Centar, third floor and above:

https://www.kvadratko.hr/en/buy/apartment/istarska/pula/centar?MinFloor=3&ExcludeTopFloor=true

Houses for sale in Istria up to 500000 euros:

https://www.kvadratko.hr/en/buy/house/istarska?MaxPrice=500000

Land for sale in Zadar County from 400 m² to 500 m²:

https://www.kvadratko.hr/en/buy/land?SelectedCounties=Zadarska&MinPlotArea=400&MaxPlotArea=500

Apartments for sale in Split with an elevator, air conditioning and balcony:

https://www.kvadratko.hr/en/buy/apartment/splitsko-dalmatinska/split?Elevator=true&HasAirConditioning=true&HasBalcony=true

Apartments for sale in Rijeka up to 250000 euros:

https://www.kvadratko.hr/en/buy/apartment/primorsko-goranska/rijeka?MaxPrice=250000