XML listing management

If you are a real estate agent or developer you can easily list all your properties to Mondinion.com Real Estate Network. All you have to do is to (1) become a Top Member, (2) create an XML file based on the below specification, (3) inform us about the location of your XML file and we will do the rest.
Alternatively, we also accept some other popular XML formats, but the preferred method for XML uploading is our own format.

Please read more about Top Member features here.

For Agents, Developers and Property Owners

XML File format specification


The file must be written in UTF8. If the file is an invalid XML file (mismatched tags, typos, etc.), the whole file is rejected and you will be notified about the exact line and column of the error.

The UTF8 XML file has one 'root' tag, and one or more 'property' elements. Each 'property' element has the following fields:

Required fields:

These fields must be present inside every 'property' element, the properties missing any of these will be rejected. One rejected property doesn't cause the other properties to be rejected.
- external_id: an integer value that uniquely identifies the property in your system
- lastmodified: the last modification date of the ad, if an ad is already in our system it is only updated if this date is newer than the one in our database. It must be in YYYY-MM-DD format. eg. 2011-02-28
- currency: available values: AED, AFN, ALL, ARS, ATS, AUD, BBD, BDT, BEF, BGN, BHD, BMD, BRL, BSD, CAD, CHF, CLP, CNY, COP, CRC, CYP, CZK, DEM, DKK, DOP, DZD, EEK, EGP, ESP, EUR, FIM, FJD, FRF, GBP, GRD, HKD, HRK, HUF, IDR, IEP, ILS, INR, IQD, IRR, ISK, ITL, JMD, JOD, JPY, KES, KRW, KWD, LBP, LKR, LUF, MAD, MTL, MUR, MXN, MYR, NLG, NOK, NZD, OMR, PEN, PHP, PKR, PLN, PTE, QAR, ROL, RON, RUB, SAR, SDG, SEK, SGD, SIT, SKK, THB, TND, TRY, TTD, TWD, USD, VEB, VEF, VND, XAF, XAG, XAU, XCD, XDR, XOF, XPD, XPF, XPT, ZAR, ZMK
- type: the type of the ad, it must be one of the following: 'Apartments for Rent', 'Apartments for Sale', 'Castles for Rent', 'Castles for Sale', 'Cave Houses for Sale', 'Character Properties for Sale', 'Commercial for Rent', 'Commercial for Sale', 'Condos for Rent', 'Condos for Sale', 'Country Houses for Rent', 'Country Houses for Sale', 'Developed Land', 'Farms for Sale', 'Foreclosures', 'Hotels for Sale', 'Houses for Rent', 'Houses for Sale', 'Industrial for Rent', 'Industrial for Sale', 'Islands for Sale', 'Land for Development', 'Motels for Sale', 'Offices for Rent', 'Offices for Sale', 'Other', 'Resorts for Sale', 'Room & Roommates', 'Short Term & Sublets', 'Vacation Rentals', 'Villas for Rent', 'Villas for Sale'
- country: show available countries-regions-cities

- region
- city
- nrbedrooms: this is required if type is one of: 'Apartments for Rent', 'Apartments for Sale', 'Castles for Rent', 'Castles for Sale', 'Cave Houses for Sale', 'Character Properties for Sale', 'Condos for Rent', 'Condos for Sale', 'Country Houses for Rent', 'Country Houses for Sale', 'Farms for Sale', 'Hotels for Sale', 'Houses for Rent', 'Houses for Sale', 'Motels for Sale', 'Vacation Rentals', 'Villas for Rent', 'Villas for Sale', otherwise it is ignored
- nrbathrooms: this is required if type is one of: 'Apartments for Rent', 'Apartments for Sale', 'Castles for Rent', 'Castles for Sale', 'Cave Houses for Sale', 'Character Properties for Sale', 'Condos for Rent', 'Condos for Sale', 'Country Houses for Rent', 'Country Houses for Sale', 'Farms for Sale', 'Hotels for Sale', 'Houses for Rent', 'Houses for Sale', 'Motels for Sale', 'Vacation Rentals', 'Villas for Rent', 'Villas for Sale', otherwise it is ignored
- vacationrentaltype: this is required if type is one of: 'Vacation Rentals', otherwise it is ignored. It has 3 possible values: Apartment, Villa or House
- title: the title of the ad, this must be unique among your ads
- desc: the description of your property in free text format

Optional fields:

- price
- address: you may specify an address
- builtarea_m2: the built area in m2, square meters
- landarea_m2
- latitude: the position of your property, latitude should be between -90.0 degrees and +90.0 degrees. You can use Google maps to retrieve it
- longitude: the position of your property, longitude should be between -180.0 degrees and +180.0 degrees. You can use Google maps to retrieve it
- features: this element contains the features in subtags, available features: 'Off_Plan', 'Furnished', 'Appliances', 'Alarm_System', 'Pet_Friendly', 'Pool', 'Tennis_Court', 'Gym__Spa', 'Balcony', 'Terrace', 'Cable_TV', 'Internet', 'Studio_Room', 'Laundry_Room', 'Office_Room', 'Garage', 'Parking', 'Garden', 'Ocean_View__Sea_View', 'Mountain_View', 'Lake_View', 'Ocean_Front__Sea_Front', 'Mountain_Front'. The missings tags, and the tag with the value of 0 are considered missing in the property. eg. <features><Furnished>1</Furnished><Internet>1</Internet></features>
- images: the posted ad is not online until you upload at least one image to it. The minimum size of images is: 200 x 200. This tags child-tags contain the following
    - primaryurl: this is the url of the primary image
    - url: if you wish, you can have up to 7 url elements, specifying 7 images
- external_link: you may specify a link to a webpage, containing additional info about this real estate

Example XML file:


<root>
  <property>
	<external_id>13</external_id>
	<lastmodified>2011-02-03</lastmodified>
	<price>70000</price>
	<currency>EUR</currency>
	<type>Apartments for Sale</type>
	<country>Croatia</country>
	<region>Dubrovacko-Neretvanska</region>
	<city>Dubrovnik</city>
	<address>whatever</address>
	<nrbedrooms>2</nrbedrooms>
	<nrbathrooms>2</nrbathrooms>
	<title>Apartment in Dubrovnik13</title>
	<builtarea_m2>80</builtarea_m2>
	<landarea_m2>100</landarea_m2>
	<latitude>0.1</latitude>
	<longitude>0.2</longitude>
	<features>
		<Furnished>1</Furnished>
		<Appliances>1</Appliances>
		<Ocean_View__Sea_View>1</Ocean_View__Sea_View>
		<Lake_View>1</Lake_View>
		<Ocean_Front__Sea_Front>0</Ocean_Front__Sea_Front>
		<Mountain_Front>1</Mountain_Front>
	</features>
	<images>
		<primaryurl>http://photos.mondinion.com/pictures/5-0.jpg</primaryurl>
		<url>http://photos.mondinion.com/pictures/hash230/5-1.jpg</url>
		<url>http://photos.mondinion.com/pictures/hash230/5-2.jpg</url>
		<url>http://photos.mondinion.com/pictures/hash230/5-3.jpg</url>
	</images>
	<desc>Description of my apartment in Dubrovnik. 
	Description of my apartment in Dubrovnik. 
	Description of my apartment in Dubrovnik. 
	Description of my apartment in Dubrovnik. 
	Description of my apartment in Dubrovnik.
	Full description of Real Estate Listing can be found here</desc>
  </property>

</root>
Content-type: text/html

An error occurred!
Can't execute statement: The table 'imgtemp' is full