forked from StefVandekerckhove1/challenge-collecting-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimmoweb_data_apartment.csv
We can't make this file beautiful and searchable because it's too large.
9989 lines (9989 loc) · 749 KB
/
immoweb_data_apartment.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Locality,Type of property,Subtype of property,Price,Number of rooms,Living Area,Fully equipped kitchen,Furnished,Open fire,Terrace,Garden,Surface of the land,Surface area of the plot of land,Number of facades,Swimming pool,State of the building,Code Immoweb,Type of Sale
2140 — BORGERHOUT,Apartment,,185000,3,98,1,0,0,8,,,,3,0,Good,20317800,No
9400 — NINOVE,Apartment,,299000,3,153,1,0,0,6,,,,2,0,Good,20318192,No
1050 — Ixelles,Apartment,,395000,2,86,1,1,0,7,,,,3,1,Good,20319510,No
2600 — BERCHEM,Apartment,,149000,1,48,1,0,0,9,,,,,0,Good,20316946,No
2100 — ANTWERPEN,Apartment,,248000,3,91,1,0,0,2,,,,,0,Good,20315980,No
1050 — Ixelles,Apartment,,495000,3,136,1,0,0,6,,,,2,0,As new,20317017,No
6700 — Arlon,Apartment,,275000,2,88,1,1,0,5,,,,2,1,Good,20318933,No
9000 — Gent,Apartment,,435000,1,67,1,0,0,15,31,31,,,0,Good,20319020,No
1030 — Schaerbeek,,Penthouse,725000,3,170,1,1,0,150,,,,4,1,As new,20317907,No
2660 — HOBOKEN,Apartment,,229000,3,100,0,0,0,26,,,,2,0,As new,20315431,No
1180 — Uccle,Apartment,,470000,3,179,1,1,0,10,,,,2,1,Good,20315652,No
2018 — ANTWERPEN,Apartment,,480000,2,116,1,0,0,7,,,,2,0,Just renovated,20315324,No
1050 — IXELLES,Apartment,,695000,2,150,1,1,0,0,,,,2,1,Just renovated,20313791,No
9500 — GERAARDSBERGEN,Apartment,,195000,2,130,1,0,0,0,,,,2,0,Good,20318225,No
9500 — GERAARDSBERGEN,Apartment,,205000,1,152,1,0,0,0,,,,,0,Good,20318216,No
1760 — ROOSDAAL,Apartment,,399000,3,141,1,0,0,65,,,,,0,Just renovated,20318213,No
9500 — GERAARDSBERGEN,Apartment,,400000,3,252,1,0,0,0,,,,2,0,Good,20318223,No
1070 — Anderlecht,Apartment,,315000,3,120,1,1,0,8,,,,2,1,As new,20313783,No
2160 — WOMMELGEM,Apartment,,249000,3,99,1,0,0,4,,,,,0,Good,20313380,No
2850 — BOOM,Apartment,,249900,2,125,1,0,0,13,,,,2,0,As new,20310616,No
2140 — Borgerhout,Apartment,,219000,2,92,0,0,0,6,,,,3,0,Good,20318805,No
2600 — BERCHEM,Apartment,,299000,3,147,1,0,0,15,,,,,0,Good,20317834,No
9800 — Astene,Apartment,,399000,3,130,1,1,0,4,,,,,0,Good,20316678,No
1180 — Uccle,,Ground,450000,2,122,1,1,0,0,200,200,,3,1,Good,20317775,No
2600 — BERCHEM,,Flat,159000,1,41,1,0,0,9,,,,,0,Good,20317296,No
9600 — RONSE,Apartment,,235000,2,103,1,0,0,20,104,104,,3,0,Good,20317242,No
2660 — HOBOKEN,Apartment,,265000,2,90,1,0,0,14,,,,2,0,As new,20315429,No
8500 — Kortrijk,Apartment,,349000,2,110,1,0,0,8,,,,2,0,Good,20316537,No
8450 — Bredene,Apartment,,279000,2,79,0,0,0,22,,,,,0,Good,20318937,No
9000 — Gent,Apartment,,585000,2,110,1,0,0,0,,,,,0,Good,20319003,No
1600 — Sint-Pieters-Leeuw,Apartment,,215000,1,62,1,1,0,0,,,,,0,Just renovated,20317353,No
9100 — Sint-Niklaas,Apartment,,425000,2,115,1,0,0,0,,,,,0,Good,20319015,No
1050 — Ixelles,Apartment,,295000,2,83,1,1,0,3,,,,2,1,To renovate,20313639,No
9080 — Lochristi,Apartment,,349000,2,120,1,1,0,2,,,,,0,Good,20311532,No
1180 — UCCLE,Apartment,,650000,4,166,1,0,1,25,,,,3,0,To be done up,20315035,No
2600 — BERCHEM,Apartment,,389000,2,125,1,0,0,19,,,,,0,Good,20309124,No
2830 — WILLEBROEK,,Penthouse,299000,3,125,1,0,0,7,,,,2,0,Good,20314605,No
8790 — WAREGEM,Apartment,,345000,2,172,1,0,0,25,,,,,0,Good,20312550,No
2610 — WILRIJK,Apartment,,395000,3,129,1,0,0,12,,,,2,0,Just renovated,20311819,No
1180 — Uccle,,Flat,179000,1,37,1,1,0,0,18,18,,4,1,Good,20317231,No
9800 — Deinze,Apartment,,215000,2,99,1,1,0,0,,,,,0,To renovate,20318921,No
2660 — Hoboken,Apartment,,219900,1,67,1,0,0,6,,,,2,0,Just renovated,20317848,No
8400 — Oostende,Apartment,,255000,1,90,0,1,0,0,,,,,0,Good,20315281,No
9300 — Aalst (9300),Apartment,,269000,2,91,1,0,0,5,,,,,0,Good,20318953,No
9320 — Erembodegem,Apartment,,269000,2,91,1,0,0,5,,,,,0,Good,20318983,No
8300 — Knokke,Apartment,,699000,2,102,1,1,0,7,,,,,0,Good,20318967,No
8300 — Knokke-Zoute,Apartment,,3850000,3,182,1,1,0,0,,,,2,0,Good,20318981,No
,,,,0,0,0,0,,,,,0,,,,,
9940 — EVERGEM,Apartment,,275000,2,83,1,0,0,17,,,,2,0,Good,20315703,No
1000 — Bruxelles,Apartment,,375000,2,92,1,0,0,0,,,,2,1,Good,20313658,No
9000 — GENT,Apartment,,445000,2,105,1,0,0,0,,,,2,0,Just renovated,20315686,No
1180 — Bruxelles,,Duplex,790000,3,188,1,0,1,20,,,,2,1,As new,20312977,No
2940 — Stabroek,Apartment,,250000,2,80,1,0,0,14,,,,,0,Just renovated,20310934,No
2940 — Stabroek,Apartment,,255000,2,85,1,0,0,14,,,,,0,Just renovated,20310935,No
1080 — Molenbeek-Saint-Jean,Apartment,,275000,2,110,0,1,1,26,,,,,1,As new,20314951,No
1081 — Koekelberg,Apartment,,275000,2,110,0,1,1,26,,,,,1,As new,20314950,No
1082 — Berchem-Sainte-Agathe,Apartment,,275000,2,110,0,1,1,26,,,,,1,As new,20314949,No
9300 — Aalst,Apartment,,549000,4,180,1,0,0,15,,,,2,0,Good,20311469,No
1000 — BRUXELLES,Apartment,,695000,2,150,1,0,0,0,,,,2,0,Just renovated,20313793,No
1080 — SINT-JANS-MOLENBEEK,Apartment,,165000,1,55,0,0,0,11,,,,2,0,Good,20308496,No
2600 — BERCHEM,Apartment,,319000,3,100,1,0,0,4,,,,2,0,Just renovated,20304816,No
9000 — Gent,Apartment,,369000,2,87,1,1,0,7,,,,,0,Good,20304633,No
2100 — DEURNE,,Penthouse,400000,3,152,1,0,0,110,,,,2,0,Good,20306871,"('Under option', 'No')"
2100 — DEURNE,Apartment,,400000,3,152,1,0,0,110,,,,2,0,Good,20306870,"('Under option', 'No')"
2100 — Antwerpen Deurne,,Ground,234900,1,85,1,1,0,0,26,26,,2,1,As new,20307858,No
9000 — Gent,Apartment,,435000,1,68,1,0,0,0,,,,,0,Good,20319016,No
9000 — Gent,Apartment,,435000,1,66,1,0,0,0,,,,,0,Good,20319009,No
9000 — Gent,Apartment,,525000,2,84,1,1,0,11,,,,,0,Just renovated,20319054,No
8400 — Oostende,Apartment,,595000,2,104,0,1,0,0,,,,,0,Just renovated,20317050,No
9100 — SINT-NIKLAAS,Apartment,,125000,1,68,1,0,0,10,,,,,0,To renovate,20315651,No
8400 — Oostende,Apartment,,269000,3,132,1,1,0,0,,,,,0,Good,20312801,No
3530 — Houthalen,Apartment,,295000,3,140,1,0,0,0,,,,,0,Good,20314612,No
8430 — Middelkerke,Apartment,,320000,2,74,0,1,0,0,,,,,0,Good,20313532,No
9050 — Ledeberg,Apartment,,399000,2,142,0,1,0,60,,,,,0,Good,20312839,No
1040 — Bruxelles,Apartment,,175000,1,40,1,1,0,0,,,,2,1,To be done up,20308983,No
2800 — MECHELEN,,Ground,375000,2,94,1,0,0,7,,,,2,0,Good,20309622,No
1030 — Schaerbeek,Apartment,,399000,3,100,1,1,0,8,,,,2,1,As new,20308527,No
2600 — BERCHEM,Apartment,,235000,2,85,1,0,0,5,,,,3,0,As new,20305843,No
9620 — Zottegem,Apartment,,269500,1,82,1,1,0,9,,,,,0,Good,20310099,No
9620 — Zottegem,Apartment,,319500,2,90,1,1,0,13,,,,,0,Good,20310100,No
8400 — Oostende,,Penthouse,595000,2,104,1,0,0,0,,,,,0,As new,20318950,No
1000 — Bruxelles,,Duplex,670000,3,152,1,1,0,30,70,70,,2,1,Good,20316635,No
8300 — Knokke,Apartment,,765000,3,99,1,1,0,10,,,,2,0,To renovate,20309681,No
4000 — Liège,Apartment,,169000,2,94,1,0,0,8,,,,4,0,,20316893,No
8420 — De Haan,Apartment,,185000,1,57,1,1,0,0,,,,,1,Good,20311480,No
8434 — Westende,Apartment,,219000,2,63,0,0,0,4,,,,,0,Good,20314996,No
9300 — Aalst (9300),Apartment,,240000,2,104,0,1,0,0,,,,,0,Good,20312205,No
8800 — Roeselare,Apartment,,325000,3,94,0,0,0,5,29,29,,,0,Good,20314962,No
8434 — Westende,Apartment,,199500,1,61,0,1,0,0,,,,,0,Good,20311522,No
2550 — KONTICH,Apartment,,695000,4,240,1,0,0,27,,,,,0,Good,20306709,No
1083 — Ganshoren,Apartment,,230000,2,95,1,1,0,6,,,,2,1,To be done up,20301066,No
9500 — GERAARDSBERGEN,Apartment,,199000,3,75,1,0,0,0,,,,2,0,Good,20318232,No
1140 — Evere,Apartment,,285000,2,87,1,0,0,3,,,,,0,Good,20317294,No
1160 — AUDERGHEM,Apartment,,300000,2,107,1,0,0,11,,,,,0,Good,20318694,No
1050 — Ixelles,Apartment,,329000,2,80,1,1,0,2,,,,2,1,As new,20316855,No
3000 — Leuven,,Penthouse,425000,1,125,1,0,0,13,,,,,0,Good,20318949,No
1180 — Uccle,Apartment,,475000,3,139,1,1,0,8,,,,3,1,To be done up,20318382,No
9000 — Gent,,Loft,745000,1,152,0,1,0,30,,,,,0,As new,20316654,No
2600 — BERCHEM,Apartment,,249000,2,100,1,0,0,10,,,,,0,To renovate,20309857,No
8400 — Oostende,Apartment,,419000,2,105,0,0,0,14,,,,,0,Good,20309137,No
2940 — Hoevenen,Apartment,,257000,2,80,1,1,0,50,,,,,0,Good,20307431,No
2060 — ANTWERPEN,Apartment,,279500,2,92,1,0,0,30,,,,2,0,Good,20309142,No
2140 — BORGERHOUT,Apartment,,214000,2,70,1,0,0,0,,,,,0,Good,20314465,No
1180 — Uccle,Apartment,,310000,2,98,1,1,0,12,,,,3,1,To renovate,20312280,No
8370 — Blankenberge,,Duplex,449000,3,141,1,0,0,0,,,,,0,Good,20313512,No
8400 — Oostende,Apartment,,320000,2,88,0,1,0,4,,,,,0,To be done up,20303165,No
2000 — ANTWERPEN,Apartment,,449000,3,166,1,0,0,0,,,,2,0,Good,20305142,No
3000 — LEUVEN,Apartment,,265000,2,60,1,0,0,7,,,,2,0,To be done up,20295946,No
3000 — LEUVEN,Apartment,,295000,2,60,1,0,0,7,,,,2,0,Good,20295916,No
3000 — LEUVEN,Apartment,,299500,2,60,1,0,0,0,100,100,,2,0,To be done up,20295908,No
1160 — Auderghem,Apartment,,510000,2,115,1,1,0,10,,,,2,1,As new,20305153,No
2140 — BORGERHOUT,Apartment,,145000,1,59,1,0,0,0,,,,2,0,Good,20318826,No
1050 — Ixelles,Apartment,,445000,1,65,1,1,0,18,,,,2,1,As new,20317786,No
2170 — MERKSEM,Apartment,,185000,2,70,1,0,0,3,,,,2,0,Good,20301576,"('Under option', 'No')"
2060 — ANTWERPEN,,Penthouse,225000,2,66,1,0,0,0,,,,2,0,Good,20317280,No
8580 — AVELGEM,Apartment,,359000,3,181,0,0,0,0,,,,2,0,Good,20315316,No
1000 — Bruxelles,Apartment,,395000,2,95,1,1,0,8,,,,2,0,Good,20313864,No
8530 — HARELBEKE,Apartment,,685000,2,147,1,0,0,0,,,,2,0,Good,20309437,No
3300 — TIENEN,Apartment,,189000,2,81,0,0,0,22,,,,4,0,To renovate,20298238,No
2018 — ANTWERPEN 2018,Apartment,,495000,3,177,1,0,0,18,,,,,0,To be done up,20299083,No
2000 — ANTWERPEN 2000,Apartment,,695000,2,180,1,0,0,35,,,,,0,Good,20299084,No
2140 — BORGERHOUT,Apartment,,295000,2,95,1,0,0,6,,,,2,0,As new,20307875,No
8670 — Oostduinkerke,Apartment,,215000,1,61,0,0,0,0,,,,,0,To renovate,20310046,No
2640 — MORTSEL,Apartment,,285000,3,120,1,0,0,19,,,,,0,,20310942,No
2100 — DEURNE,Apartment,,209999,2,75,1,0,0,0,,,,2,0,As new,20304366,No
2600 — BERCHEM,Apartment,,245000,2,110,1,0,0,0,,,,3,0,Good,20305050,No
2140 — Borgerhout,Apartment,,259000,2,85,1,0,0,3,,,,,0,Just renovated,20302574,No
3830 — Wellen,,Penthouse,380000,2,159,1,0,0,16,,,,,0,As new,20302596,No
1470 — GENAPPE,Apartment,,195000,2,80,1,0,0,0,,,,3,0,Good,20319509,No
8370 — Blankenberge,Apartment,,197000,3,98,1,1,0,0,,,,2,0,Good,20317961,No
9660 — BRAKEL,Apartment,,254000,2,135,1,0,0,0,,,,2,0,Just renovated,20318198,No
8600 — Diksmuide,,Loft,299000,2,115,1,1,0,0,,,,,0,Good,20316620,No
9000 — Gent,Apartment,,365000,3,124,0,1,0,7,,,,,0,,20316713,No
3000 — LEUVEN,,Penthouse,625000,3,136,1,0,0,0,,,,3,0,,20317397,No
1000 — Brussels,,Penthouse,675000,2,140,1,1,0,77,,,,2,1,As new,20318932,No
8380 — Zeebrugge,Apartment,,294000,2,58,1,0,0,0,,,,2,0,Good,20309178,No
8300 — Knokke,Apartment,,525000,2,80,1,1,0,0,,,,2,0,Good,20309675,No
9320 — EREMBODEGEM,Apartment,,199000,2,91,0,0,0,0,,,,2,0,Good,20316951,No
8800 — Roeselare,Apartment,,265000,2,94,0,0,0,11,,,,,0,Good,20314958,No
9000 — Gent,Apartment,,325000,2,106,1,1,0,8,,,,2,1,Good,20317181,No
1180 — Uccle,Apartment,,799000,3,180,1,1,0,28,90,90,,2,1,As new,20313017,No
8300 — Knokke-Heist,Apartment,,2975000,3,125,1,1,0,37,,,,2,1,Just renovated,20314259,No
2020 — ANTWERPEN,Apartment,,319000,2,,1,0,0,3,,,,2,0,Good,20313035,No
8400 — Oostende,Apartment,,219000,2,62,0,1,0,4,,,,,0,Good,20305572,No
1070 — Anderlecht,Apartment,,285000,2,74,1,1,0,0,100,100,,,0,Good,20304291,No
3500 — Hasselt,Apartment,,295000,2,100,1,1,0,3,,,,,0,Just renovated,20305476,No
,,,,0,0,0,0,,,,,0,,,,,
3500 — Hasselt,Apartment,,249000,1,65,0,0,0,15,,,,,0,Good,20302613,No
1200 — Woluwe-Saint-Lambert,Apartment,,430000,2,107,1,1,0,6,,,,2,1,As new,20303198,No
9290 — BERLARE,,Penthouse,1325000,2,320,1,0,0,106,,,,4,0,Good,20305455,"('Under option', 'No')"
8400 — Oostende,Apartment,,119000,2,69,0,0,0,0,,,,,0,To restore,20316568,No
1070 — Anderlecht,,Duplex,235000,4,120,1,1,0,14,,,,2,0,To renovate,20318396,No
1140 — Evere,Apartment,,298000,2,102,1,1,0,0,,,,3,1,Just renovated,20316854,No
4000 — Liège,,Duplex,299000,3,168,1,1,0,30,167,167,,2,1,As new,20318399,No
8400 — Oostende,Apartment,,429000,3,147,0,0,0,6,,,,,0,Good,20309333,No
9000 — Gent,Apartment,,445000,2,101,0,0,0,10,,,,,0,Good,20309748,No
1180 — Uccle,Apartment,,235000,1,70,1,1,0,0,,,,2,1,To renovate,20297717,No
1020 — Laeken,Apartment,,249000,2,92,1,1,0,8,,,,2,1,Good,20300918,No
1350 — Jauche,Apartment,,179000,2,97,1,1,0,15,5,5,,2,1,To be done up,20314871,No
1370 — Jodoigne,Apartment,,179000,2,97,1,1,0,15,5,5,,2,1,To be done up,20314875,No
8020 — Oostkamp,Apartment,,195000,1,69,1,1,0,0,,,,,0,Good,20312185,No
9940 — Evergem,Apartment,,215000,3,100,0,0,0,0,,,,,0,Good,20314855,No
9000 — Gent,Apartment,,232000,1,71,1,0,0,0,,,,,0,Just renovated,20314859,No
1020 — Bruxelles,,Penthouse,239000,2,95,1,1,0,0,,,,2,0,Good,20315149,No
8620 — Nieuwpoort,Apartment,,295000,1,63,1,1,0,0,,,,,0,Good,20313522,No
2800 — MECHELEN,Apartment,,299500,2,79,1,0,0,7,,,,2,0,Just renovated,20296739,No
2800 — MECHELEN,Apartment,,299500,2,79,1,0,0,7,,,,2,0,Just renovated,20296738,No
2800 — MECHELEN,Apartment,,305000,2,80,1,0,0,7,,,,2,0,Just renovated,20296737,No
9150 — Kruibeke,Apartment,,305000,3,120,0,0,0,0,,,,,0,Good,20306551,No
3000 — Leuven,Apartment,,349000,1,77,0,0,0,14,,,,,0,Good,20308016,No
,,,,0,0,0,0,,,,,0,,,,,
1200 — Woluwe-Saint-Lambert,Apartment,,335000,2,80,1,1,0,8,,,,2,1,As new,20295671,No
1180 — Uccle,Apartment,,385000,3,117,1,1,0,6,,,,2,1,Good,20295069,No
1180 — Uccle,,Duplex,499000,3,155,1,1,0,27,,,,2,1,Good,20295033,No
9450 — HAALTERT,Apartment,,225000,2,82,1,0,0,63,,,,2,0,As new,20311717,No
1210 — Saint-josse-ten-noode,Apartment,,265000,2,96,1,1,0,0,,,,3,1,Good,20311737,No
1070 — Anderlecht,,Duplex,328000,2,113,1,1,0,15,,,,2,0,As new,20310576,No
8730 — Beernem,Apartment,,349000,3,101,0,0,0,0,,,,,0,Good,20310345,No
,,,,0,0,0,0,,,,,0,,,,,
2100 — DEURNE,Apartment,,289000,2,88,1,0,0,45,45,45,,2,0,Just renovated,20291747,No
9200 — DENDERMONDE,Apartment,,169900,1,59,1,0,0,0,,,,2,0,Good,20308719,No
2100 — DEURNE,Apartment,,179000,2,76,1,0,0,0,,,,2,0,To be done up,20301360,No
2800 — WALEM,Apartment,,245000,2,78,1,0,0,12,,,,2,0,As new,20295309,No
2140 — ANTWERPEN,Apartment,,269900,2,90,1,0,0,0,33,33,,2,0,Good,20295694,No
1200 — Woluwe-Saint-Lambert,,Duplex,449000,3,156,1,1,0,0,,,,2,1,As new,20310259,No
2600 — BERCHEM,Apartment,,205000,2,92,1,0,0,16,,,,,0,To be done up,20298088,No
1400 — Nivelles,Apartment,,259000,2,72,1,1,0,9,,,,,1,To be done up,20301424,No
1080 — MOLENBEEK-SAINT-JEAN,Apartment,,275000,2,100,1,0,0,19,,,,2,0,As new,20304421,No
1880 — KAPELLE-OP-DEN-BOS,Apartment,,317500,2,85,1,0,0,6,,,,2,0,Good,20304855,No
1000 — Brussel,Apartment,,345000,2,87,1,1,0,3,,,,2,1,Good,20300781,No
1150 — Woluwe-Saint-Pierre,Apartment,,495000,3,142,1,1,0,26,,,,,1,To renovate,20301303,No
1060 — Saint-Gilles,Apartment,,199000,1,77,1,1,0,0,,,,2,1,To renovate,20316113,No
9120 — Beveren-Waas,Apartment,,249000,2,98,1,0,0,0,,,,2,0,Just renovated,20315257,No
1081 — Koekelberg,Apartment,,279000,2,95,0,0,0,0,,,,,0,Good,20315287,No
1140 — Evere,Apartment,,398000,3,107,1,0,0,18,,,,,0,Good,20318977,No
8400 — Oostende,Apartment,,279000,2,86,0,1,0,0,,,,,0,Good,20309181,No
8420 — Wenduine,Apartment,,279000,2,85,1,1,0,0,,,,,0,Good,20309341,No
2880 — Hingene,Apartment,,374000,3,217,0,0,0,6,,,,,0,Good,20300094,No
8500 — KORTRIJK,Apartment,,165000,2,100,1,0,0,5,,,,,0,Good,20316850,No
2600 — BERCHEM,,Ground,169500,2,70,1,0,0,0,,,,,0,To be done up,20316597,No
9700 — OUDENAARDE,Apartment,,245000,2,80,1,0,0,0,,,,,0,Good,20316843,No
1020 — Laeken,,Penthouse,300000,2,130,1,1,0,30,,,,2,1,As new,20316056,No
2640 — MORTSEL,,Duplex,335000,2,132,0,0,0,22,,,,3,0,As new,20316934,No
8430 — MIDDELKERKE,Apartment,,360000,2,63,1,1,0,0,,,,,0,Good,20316963,No
9100 — Sint-Niklaas,Apartment,,269000,1,82,0,0,0,12,,,,,0,Good,20308654,No
2000 — Antwerpen (2000),,Penthouse,495000,1,116,1,1,0,23,,,,,0,Good,20307383,No
9000 — Gent,Apartment,,985000,2,126,0,0,0,17,,,,,0,As new,20308672,No
1190 — Forest,Apartment,,169000,1,57,1,1,0,6,,,,2,1,To renovate,20295113,No
1190 — Forest,Apartment,,169000,1,57,1,1,0,6,,,,2,1,To renovate,20295110,No
8370 — BLANKENBERGE,Apartment,,199000,1,55,1,0,0,0,,,,,0,Good,20299046,No
1000 — Bruxelles,Apartment,,259000,2,86,1,1,0,0,,,,2,1,To renovate,20295079,No
1000 — Bruxelles,Apartment,,265000,2,86,1,1,0,0,,,,2,1,To renovate,20295081,No
1000 — Bruxelles,Apartment,,265000,2,86,1,1,0,0,,,,2,1,To renovate,20295077,No
1180 — Uccle,Apartment,,295000,2,86,1,1,0,23,,,,3,1,To renovate,20295034,No
1000 — Bruxelles,Apartment,,299000,3,105,1,1,0,0,,,,2,1,To renovate,20295103,No
1000 — Bruxelles,Apartment,,299000,3,105,1,1,0,0,,,,2,1,To renovate,20295074,No
1000 — Bruxelles,Apartment,,325000,3,105,1,1,0,0,,,,2,1,To renovate,20295087,No
1600 — Sint-Pieters-Leeuw,Apartment,,335000,2,84,1,1,0,18,,,,,0,Good,20300040,No
1000 — Bruxelles,Apartment,,415000,1,123,1,1,0,5,,,,2,1,Good,20295050,No
1000 — Bruxelles,,Duplex,425000,2,110,1,1,0,16,,,,2,1,Good,20295054,No
1000 — Bruxelles,,Duplex,495000,2,146,1,1,0,12,,,,2,1,Good,20295045,No
2018 — ANTWERPEN 2018,,Penthouse,685000,3,205,1,0,1,0,,,,,0,Just renovated,20299080,No
1020 — Laeken,Apartment,,220000,3,100,1,1,0,17,,,,2,1,To renovate,20313701,No
7321 — BLATON,Apartment,,220000,3,117,1,0,0,0,,,,,0,Good,20314035,No
7850 — ENGHIEN,Apartment,,275000,2,95,0,0,0,25,,,,3,0,,20312490,No
1050 — IXELLES,Apartment,,345000,1,64,1,0,0,20,,,,2,0,Just renovated,20313790,No
9900 — Eeklo,Apartment,,185000,2,97,1,0,0,0,,,,,0,Good,20304708,No
2100 — DEURNE,,Duplex,325000,2,93,1,0,0,17,,,,2,0,Just renovated,20308128,No
2100 — DEURNE,Apartment,,325000,2,93,1,0,0,17,,,,2,0,Just renovated,20300739,No
1050 — Ixelles,Apartment,,645000,3,165,1,1,0,6,,,,2,1,As new,20304789,No
2018 — Antwerpen,Apartment,,379000,2,84,1,0,0,20,,,,,1,As new,20313932,No
1190 — Forest,,Ground,600000,2,135,0,1,1,50,300,300,,,1,As new,20295364,No
8570 — ANZEGEM,Apartment,,165000,2,92,1,0,0,0,,,,4,0,Good,20305152,No
1060 — Saint-Gilles,Apartment,,275000,3,135,1,1,0,0,,,,2,0,To renovate,20316112,No
1140 — Evere,,Duplex,285000,2,80,1,1,0,0,,,,3,1,Just renovated,20316856,No
1000 — Bruxelles,,Duplex,299000,3,131,1,0,0,0,,,,2,1,To renovate,20316120,No
1000 — Bruxelles,,Loft,595000,2,160,1,1,0,0,,,,2,1,As new,20317774,No
1050 — Ixelles,,Penthouse,650000,2,105,1,1,0,13,,,,2,1,As new,20317776,No
9820 — Merelbeke,Apartment,,619000,2,130,1,1,0,0,,,,,0,As new,20309482,No
1040 — Etterbeek,Apartment,,345000,2,87,1,1,0,3,,,,2,1,Good,20302440,No
1050 — Ixelles,Apartment,,380000,2,85,1,1,0,3,,,,2,1,To be done up,20298879,No
2000 — ANTWERPEN,,Penthouse,399000,2,107,1,0,0,50,,,,2,0,Good,20301577,No
1000 — BRUSSEL,Apartment,,645000,2,100,1,0,0,60,,,,,0,Just renovated,20302021,No
1000 — BRUSSEL,,Penthouse,645000,2,100,1,0,0,60,,,,,0,Just renovated,20302020,No
1020 — Laeken,Apartment,,225000,2,82,1,1,0,3,,,,2,1,To renovate,20316057,No
9550 — Herzele,Apartment,,259000,2,110,1,1,0,20,,,,2,1,Good,20315877,No
4420 — Saint-Nicolas,,Duplex,319000,4,145,1,1,0,0,,,,3,1,Good,20312786,No
2870 — Ruisbroek (2870),Apartment,,189000,1,57,0,0,0,0,,,,,0,Good,20308012,No
2820 — Bonheiden,Apartment,,325000,1,79,0,0,0,0,,,,,0,Good,20308998,No
2800 — Mechelen,Apartment,,287000,2,116,1,0,0,6,,,,3,1,As new,20310753,No
2150 — Borsbeek,Apartment,,209000,2,99,1,0,0,1,,,,,0,Good,20296905,No
2160 — Wommelgem,Apartment,,209000,2,99,1,0,0,1,,,,,0,Good,20296903,No
9230 — WETTEREN,Apartment,,249000,2,88,1,0,0,9,,,,2,0,Good,20297492,No
1000 — Bruxelles,Apartment,,285000,1,79,1,1,0,0,,,,2,1,Good,20295046,No
1000 — Bruxelles,Apartment,,285000,1,79,1,1,0,0,,,,2,1,As new,20295044,No
2640 — Mortsel,Apartment,,369000,3,130,0,1,0,9,,,,,0,Good,20297124,No
2000 — ANTWERPEN 2000,Apartment,,549500,3,142,1,0,0,15,,,,,0,Just renovated,20298089,No
2000 — ANTWERPEN 2000,,Penthouse,549500,3,142,1,0,0,15,,,,,0,Just renovated,20298087,No
6700 — ARLON,Apartment,,200000,1,47,1,0,0,8,,,,,0,Good,20313041,No
2270 — HERENTHOUT,Apartment,,299000,2,93,1,0,0,13,,,,3,0,,20314504,No
9000 — Gent,Apartment,,398000,1,74,0,0,0,0,,,,,0,As new,20311117,No
8620 — NIEUWPOORT,Apartment,,430000,2,60,1,1,0,0,,,,4,0,,20313003,No
8370 — Blankenberge,,Flat,157500,1,37,0,1,0,0,,,,,0,To be done up,20303187,No
1070 — Anderlecht,Apartment,,265000,3,100,1,1,0,20,,,,4,1,Good,20308055,No
9300 — AALST,Apartment,,179000,1,69,1,0,0,0,,,,2,0,Good,20294422,No
1020 — Laeken,Apartment,,319000,2,106,1,1,0,12,,,,2,1,As new,20310043,No
8200 — Sint-Michiels,Apartment,,135000,1,37,1,0,0,0,,,,,0,To be done up,20302599,No
9620 — Zottegem,Apartment,,169000,2,111,0,1,0,0,,,,,0,Good,20302664,No
1000 — BRUSSEL,Apartment,,239000,1,47,1,1,0,2,,,,3,0,Good,20305154,No
2660 — HOBOKEN,Apartment,,339000,2,136,1,0,0,16,,,,2,0,As new,20305666,No
9620 — Zottegem,Apartment,,339000,2,121,0,1,0,7,,,,,0,Good,20301029,No
2640 — MORTSEL,Apartment,,369000,2,122,1,0,0,6,35,35,,,0,Just renovated,20305566,No
9000 — Gent,Apartment,,399000,2,142,0,1,0,60,,,,,0,Good,20302610,No
9000 — Gent,Apartment,,895000,2,146,0,0,0,0,,,,,0,As new,20302344,No
8620 — NIEUWPOORT,,Flat,235000,1,36,1,1,0,0,,,,,0,Good,20317807,No
9000 — Gent,Apartment,,435000,3,169,0,1,0,0,,,,,0,To be done up,20317879,No
1120 — Neder-Over-Heembeek,Apartment,,269000,2,90,1,1,0,18,,,,2,1,Good,20276560,No
2800 — MECHELEN,Apartment,,299000,3,168,1,0,0,0,,,,2,0,To be done up,20309860,No
1050 — Ixelles,Apartment,,249000,1,60,1,1,0,5,,,,2,1,Good,20298878,"('Under option', 'No')"
1040 — Bruxelles,Apartment,,350000,1,56,1,1,0,0,,,,,1,As new,20300825,No
8400 — Oostende,Apartment,,238000,1,56,0,0,0,0,,,,,0,Good,20317359,No
9050 — Gentbrugge,Apartment,,289000,3,147,0,1,0,75,,,,,0,,20316643,No
9820 — Merelbeke,Apartment,,289000,3,147,0,1,0,75,,,,,0,,20316694,No
4845 — Jalhay,Apartment,,295000,2,110,1,1,0,21,55,55,,3,1,As new,20313695,No
9040 — Gent Sint-Amandsberg,Apartment,,325000,2,126,1,1,0,12,,,,3,1,As new,20311355,No
9050 — Gentbrugge,Apartment,,398000,4,157,0,1,0,16,,,,,0,,20316626,No
8580 — AVELGEM,,Loft,650000,2,225,1,0,0,0,,,,2,0,Good,20316545,No
4420 — SAINT-NICOLAS,Apartment,,99000,1,47,1,0,0,0,,,,3,0,Good,20306743,No
9000 — Gent,Apartment,,565000,1,84,0,0,0,0,,,,,0,Good,20308996,No
1210 — Saint-Josse-ten-Noode,Apartment,,165000,2,62,1,1,0,0,,,,2,1,To renovate,20295953,No
1190 — Forest,,Duplex,199000,1,106,1,1,0,0,,,,2,1,To renovate,20295106,No
3570 — Alken,,Service,230000,1,68,1,0,0,9,,,,,0,Good,20296940,No
2018 — ANTWERPEN 2018,Apartment,,575000,3,200,1,0,0,15,,,,2,0,Just renovated,20299081,No
9000 — Gent,Apartment,,649000,3,129,1,0,0,0,280,280,,,0,As new,20297176,No
9070 — Destelbergen,Apartment,,649000,3,129,1,0,0,0,280,280,,,0,As new,20297174,No
8370 — Blankenberge,Apartment,,469000,3,140,0,0,0,0,,,,,0,Just renovated,20313510,No
,,,,0,0,0,0,,,,,0,,,,,
9032 — Wondelgem,,Ground,219000,2,85,0,1,0,0,,,,,0,Good,20305634,No
2600 — Berchem,Apartment,,265000,2,94,1,0,0,0,,,,3,0,Good,20307965,No
9400 — NINOVE,Apartment,,309000,2,81,1,0,0,6,,,,2,0,Just renovated,20308173,No
2140 — ANTWERPEN,Apartment,,214900,2,82,1,0,0,0,,,,2,0,Good,20295695,No
2140 — ANTWERPEN,Apartment,,219900,2,82,1,0,0,0,,,,2,0,Good,20295696,No
2140 — ANTWERPEN,Apartment,,219900,2,82,1,0,0,0,,,,2,0,Good,20295693,No
2940 — Stabroek,Apartment,,399000,3,130,1,0,0,8,,,,,0,Good,20296922,No
9340 — Lede,Apartment,,245000,2,123,1,1,0,0,80,80,,,0,Good,20310226,No
1080 — Sint-Jans-Molenbeek,Apartment,,325000,2,86,1,1,0,10,,,,2,1,As new,20310116,No
8800 — Rumbeke,Apartment,,169000,2,77,0,1,0,0,,,,,0,Good,20302750,No
2100 — DEURNE,Apartment,,235000,2,80,1,0,0,0,,,,2,0,Just renovated,20304889,No
8400 — Oostende,Apartment,,650000,2,223,0,0,0,0,,,,,0,To renovate,20304627,No
6810 — Chiny Jamoigne,Apartment,,184500,2,82,1,0,0,15,47,47,,4,1,,20317610,No
9000 — Gent,Apartment,,295000,2,90,1,1,0,10,,,,2,1,As new,20319462,No
9300 — Aalst (9300),,Loft,425000,3,,1,0,0,55,,,,,0,As new,20318939,No
8400 — Oostende,,Penthouse,549000,3,,0,0,0,0,,,,,0,As new,20317345,No
1140 — Evere,Apartment,,315000,2,93,1,1,0,0,,,,2,1,Good,20309627,No
4102 — Seraing,Apartment,,325000,2,89,1,1,0,25,148,148,,2,1,As new,20239719,No
2170 — Merksem,Apartment,,225000,2,99,1,1,0,0,,,,,0,Good,20299970,No
1050 — Ixelles,Apartment,,900000,2,186,1,1,0,0,163,163,,2,1,As new,20297505,No
1180 — Ukkel,Apartment,,299000,2,67,1,1,0,16,,,,3,1,Good,20313267,No
2170 — MERKSEM,Apartment,,199900,2,85,1,0,0,3,,,,3,0,Good,20293555,No
,,,,0,0,0,0,,,,,0,,,,,
9971 — Lembeke,Apartment,,365000,2,107,1,1,0,14,,,,,0,Just renovated,20306548,No
2880 — BORNEM,Apartment,,229000,2,127,1,0,0,14,,,,2,0,To be done up,20299647,No
1180 — Uccle,Apartment,,460000,2,141,1,0,1,0,25,25,,2,1,Good,20297309,"('Under option', 'No')"
1300 — WAVRE,Apartment,,269000,3,130,1,1,0,54,,,,2,1,Good,20291880,No
2018 — ANTWERPEN,Apartment,,469000,2,116,1,0,0,4,,,,2,0,Just renovated,20291474,No
1150 — Woluwe-Saint-Pierre,Apartment,,885000,4,200,1,1,0,14,,,,3,1,Good,20290513,No
9300 — Aalst (9300),Apartment,,124999,1,48,0,1,0,0,,,,2,0,Good,20305175,No
8800 — Roeselare,Apartment,,229000,2,104,1,0,0,0,,,,,0,Good,20304284,No
8300 — Knokke-Zoute,Apartment,,349500,1,46,1,1,0,0,,,,2,0,Good,20304205,No
8400 — Oostende,Apartment,,144000,2,54,0,1,0,4,,,,,0,Good,20294256,No
4020 — LIÈGE,Apartment,,159000,2,81,1,0,0,6,,,,2,1,To be done up,20295476,No
8400 — Oostende,Apartment,,185000,2,67,0,0,0,5,,,,,0,Good,20294257,No
9960 — ASSENEDE,Apartment,,274000,2,120,1,0,0,0,,,,2,0,Good,20296457,No
2600 — BERCHEM,Apartment,,1095000,2,362,1,0,0,0,170,170,,,0,Just renovated,20296152,No
2600 — BERCHEM,Apartment,,214500,2,85,1,0,0,3,,,,2,0,Good,20289025,No
2600 — BERCHEM,Apartment,,299000,2,113,1,0,0,12,,,,,0,Good,20288094,"('Under option', 'No')"
2600 — BERCHEM,Apartment,,499000,2,161,1,0,1,106,,,,,0,Good,20289024,No
1180 — Uccle,Apartment,,269000,1,70,1,1,0,10,,,,2,1,As new,20301172,No
1620 — Drogenbos,Apartment,,269000,1,70,1,1,0,10,,,,2,1,As new,20301175,No
1050 — Ixelles,Apartment,,695000,2,150,1,0,0,0,,,,2,1,As new,20303490,No
1000 — BRUXELLES,Apartment,,365000,2,106,1,0,0,7,,,,4,1,As new,20319079,No
9000 — Gent,,Service,450000,2,127,1,1,0,80,85,85,,2,1,Good,20317724,No
1050 — Ixelles,Apartment,,499000,2,150,1,0,0,0,,,,3,1,To be done up,20318929,No
2930 — Brasschaat,,Penthouse,945000,2,315,0,0,0,40,,,,,0,Good,20319014,No
8434 — Westende,,Flat,168000,1,33,0,1,0,0,,,,,0,Just renovated,20309679,No
8400 — Oostende,Apartment,,245000,2,87,1,0,0,1,,,,,0,,20309345,No
9140 — Temse,Apartment,,239000,1,85,1,1,0,0,,,,,0,Just renovated,20300197,No
8430 — MIDDELKERKE,Apartment,,205000,1,42,1,1,0,3,,,,,0,Good,20316964,No
4420 — Saint-Nicolas,Apartment,,229000,3,93,1,1,0,13,,,,3,1,Good,20312775,No
2610 — Antwerpen Wilrijk,Apartment,,249900,3,100,1,1,0,4,,,,3,1,Good,20315028,No
4500 — HUY,Apartment,,270000,1,117,1,0,0,16,150,150,,2,0,,20316997,No
8500 — Kortrijk,,Loft,365000,1,126,1,0,0,0,,,,2,0,Good,20316536,No
1200 — Woluwe-Saint-Lambert,Apartment,,445000,3,120,1,1,0,6,,,,2,1,As new,20317393,No
3000 — Leuven,Apartment,,485000,3,180,0,0,0,3,,,,,0,,20312851,No
2000 — ANTWERPEN,Apartment,,885000,3,165,1,0,0,0,,,,,0,Good,20316598,No
1040 — ETTERBEEK,,Penthouse,1150000,3,198,0,0,0,42,,,,,0,Just renovated,20316000,No
1930 — Zaventem,,Flat,169000,1,39,1,1,0,5,,,,2,1,As new,20291799,No
9050 — Ledeberg,Apartment,,225000,2,80,0,0,0,0,,,,,0,To be done up,20307477,No
9050 — Gentbrugge,Apartment,,245000,1,68,0,1,0,0,,,,,0,Just renovated,20307448,No
9000 — Gent,Apartment,,320000,2,85,0,1,0,0,,,,,0,To be done up,20307405,No
8400 — Oostende,Apartment,,395000,2,87,0,1,0,6,,,,,0,,20306598,No
9971 — Lembeke,Apartment,,495000,3,165,1,1,0,17,79,79,,,0,Just renovated,20306528,No
1070 — Anderlecht,Apartment,,199000,2,78,1,1,0,10,,,,4,1,Good,20296384,No
,,,,0,0,0,0,,,,,0,,,,,
8300 — Knokke,Apartment,,465000,2,79,1,1,0,0,,,,2,0,To renovate,20296888,No
1000 — Bruxelles,Apartment,,475000,1,145,1,1,0,0,,,,2,1,Good,20295055,No
2000 — Antwerpen (2000),,Penthouse,679000,2,157,1,0,0,39,,,,,0,,20310948,No
1180 — Uccle,,Penthouse,525000,2,160,1,0,0,40,,,,3,1,Good,20288641,No
1030 — Schaerbeek,Apartment,,170000,1,50,1,1,0,56,,,,3,1,Good,20304021,No
8420 — De Haan,Apartment,,225000,2,71,0,0,0,0,,,,,0,Just renovated,20305571,No
2060 — ANTWERPEN,,Kot,235000,2,53,1,0,0,0,,,,2,0,Just renovated,20306805,No
1500 — HALLE,,Duplex,385000,3,126,1,0,0,6,,,,3,0,Just renovated,20307901,No
1500 — HALLE,Apartment,,385000,3,126,1,0,0,6,,,,3,0,Just renovated,20307900,No
1030 — Schaerbeek,Apartment,,399000,3,120,1,1,0,8,,,,3,1,Good,20304440,No
6600 — BASTOGNE,Apartment,,345000,3,125,1,0,0,0,,,,3,0,Good,20296498,No
7500 — Tournai,,Ground,199000,1,118,1,1,0,5,80,80,,2,1,Good,20301358,No
2640 — MORTSEL,Apartment,,259000,2,98,1,0,0,6,,,,,0,Just renovated,20305564,No
2640 — MORTSEL,Apartment,,295000,2,98,1,0,0,5,,,,,0,Just renovated,20305565,No
1180 — Uccle,Apartment,,695000,2,125,1,1,0,27,,,,3,1,As new,20301898,No
1500 — HALLE,Apartment,,749000,4,201,1,0,0,6,,,,3,0,Just renovated,20303636,No
2200 — HERENTALS,,Ground,220000,1,60,1,0,0,6,,,,2,0,,20318628,No
2200 — HERENTALS,,Ground,340000,2,98,1,0,0,0,35,35,,2,0,,20318669,No
8400 — Oostende,Apartment,,139000,1,95,0,1,0,10,100,100,,,0,To be done up,20293552,No
2020 — ANTWERPEN,Apartment,,149500,2,89,0,0,0,1,,,,3,0,To be done up,20286074,"('Under option', 'No')"
1400 — Nivelles,Apartment,,180000,3,95,1,0,0,13,,,,4,0,To renovate,20285846,No
2660 — HOBOKEN,Apartment,,249900,2,97,0,0,0,3,,,,2,0,As new,20286450,No
4280 — Hannut,Apartment,,175000,2,103,1,1,0,0,,,,4,1,Good,20300813,No
4280 — Hannut,Apartment,,190000,2,103,1,1,0,0,,,,4,1,Good,20300812,No
8780 — Oostrozebeke,Apartment,,235000,2,80,1,1,0,0,,,,,0,Good,20299963,No
1140 — Evere,Apartment,,335000,2,106,1,0,0,3,,,,,0,Good,20299959,No
8300 — Knokke-Heist,Apartment,,775000,3,85,1,1,0,0,,,,2,0,Good,20299835,No
9220 — Hamme (9220),Apartment,,215000,3,66,0,0,0,0,,,,,0,Good,20312891,No
2630 — AARTSELAAR,Apartment,,399500,3,96,1,0,0,7,,,,,0,,20315712,No
9300 — AALST,Apartment,,289000,3,107,1,0,0,0,,,,3,0,Good,20293114,"('Under option', 'No')"
1180 — Uccle,Apartment,,360000,2,101,1,1,0,5,,,,3,1,As new,20306741,No
2050 — Antwerpen (2050),Apartment,,365000,2,95,1,0,0,0,,,,,0,Good,20307991,No
9971 — Lembeke,Apartment,,385000,2,129,1,1,0,16,,,,,0,Just renovated,20306568,No
8400 — Oostende,Apartment,,445000,3,115,0,1,0,8,,,,,0,,20308020,No
1060 — Saint-Gilles,Apartment,,520000,3,149,0,1,0,10,,,,,1,,20306746,No
9660 — Brakel,Apartment,,220000,1,93,1,1,0,0,,,,,0,Good,20297038,No
2000 — ANTWERPEN,Apartment,,349000,2,106,0,0,0,1,,,,2,0,,20297481,No
8670 — Koksijde,Apartment,,495000,2,103,0,0,0,0,,,,,0,Just renovated,20296872,No
2000 — ANTWERPEN,Apartment,,699000,2,190,1,0,0,0,80,80,,,0,As new,20298763,No
2018 — ANTWERPEN,Apartment,,699000,2,190,1,0,0,0,80,80,,,0,As new,20298764,No
1000 — Bruxelles,Apartment,,1200000,3,233,1,1,0,0,150,150,,2,1,As new,20297504,No
1050 — Ixelles,Apartment,,1200000,3,233,1,1,0,0,150,150,,2,1,As new,20297503,No
1040 — Etterbeek,,Flat,190000,1,43,1,1,0,0,,,,2,1,Good,20314511,No
1080 — Molenbeek-Saint-Jean,Apartment,,349000,2,131,0,1,0,4,,,,,0,,20312459,No
1150 — Woluwe-Saint-Pierre,Apartment,,365000,3,110,1,1,0,14,,,,2,1,Good,20314816,No
1050 — IXELLES,Apartment,,545000,3,126,1,0,0,7,,,,2,0,,20311714,No
1000 — Bruxelles,,Duplex,460000,3,146,1,1,0,52,,,,2,1,As new,20290634,No
2930 — Brasschaat,Apartment,,259000,2,89,0,0,0,0,,,,2,0,Good,20306147,No
9991 — Maldegem Adegem,,Ground,299000,1,75,1,1,0,40,,,,3,1,As new,20305710,No
8450 — Bredene,Apartment,,325000,2,84,1,0,0,0,,,,,0,Good,20304706,No
1000 — Brussel,Apartment,,375000,2,96,1,1,0,12,,,,4,1,Good,20304339,No
2610 — WILRIJK,Apartment,,475000,3,98,1,0,0,10,120,120,,3,0,,20307646,No
2650 — EDEGEM,Apartment,,274900,1,70,1,0,0,0,80,80,,2,0,Good,20285048,No
,,,,0,0,0,0,,,,,0,,,,,
2811 — HOMBEEK,Apartment,,260000,2,94,1,0,0,9,,,,2,0,Good,20282491,No
2060 — ANTWERPEN,Apartment,,265000,2,110,1,0,0,0,,,,2,0,Just renovated,20296493,No
3110 — ROTSELAAR,Apartment,,307500,3,174,1,0,0,0,,,,,0,Just renovated,20296772,No
3111 — WEZEMAAL,Apartment,,307500,3,174,1,0,0,0,,,,,0,Just renovated,20296771,No
2830 — WILLEBROEK,Apartment,,310000,3,133,1,0,0,36,,,,,0,Good,20295500,No
1000 — Bruxelles,Apartment,,900000,2,186,1,1,0,0,163,163,,2,1,As new,20296660,No
8300 — Knokke,Apartment,,1250000,3,110,1,0,0,0,,,,2,0,Good,20294174,No
8301 — Duinbergen,Apartment,,1250000,3,110,1,0,0,0,,,,2,0,Good,20294175,No
3000 — LEUVEN,,Flat,175000,1,29,1,0,0,0,,,,,0,Good,20303900,No
1140 — Evere,Apartment,,354000,2,74,1,1,0,5,,,,2,1,As new,20303077,No
1000 — Bruxelles,Apartment,,695000,2,150,1,1,0,0,,,,2,1,As new,20303181,No
1050 — Ixelles,Apartment,,695000,2,150,1,1,0,0,,,,2,1,As new,20303180,No
9000 — Gent,Apartment,,995000,3,165,1,0,0,8,,,,,0,Just renovated,20302763,No
8310 — Assebroek,Apartment,,199000,2,91,1,0,0,10,,,,2,1,Good,20316508,No
4000 — Liège,Apartment,,215000,2,94,1,1,0,7,,,,2,1,Good,20316876,No
1190 — Forest,Apartment,,275000,2,95,1,1,0,3,,,,3,1,Good,20317785,No
1180 — Uccle,Apartment,,300000,2,78,1,1,0,19,,,,2,1,Good,20317779,No
9040 — Gent,Apartment,,349000,2,87,1,1,0,0,,,,2,1,Good,20317029,No
8380 — Zeebrugge,Apartment,,240000,1,51,1,1,0,2,,,,1,0,Good,20293509,No
8450 — Bredene,Apartment,,255000,2,93,1,0,0,8,,,,,0,Good,20293553,No
8434 — Westende,,Flat,155000,1,37,0,1,0,0,,,,,0,Good,20309678,No
1150 — Woluwe-Saint-Pierre,Apartment,,325000,2,100,1,1,0,10,,,,2,1,As new,20284237,No
1200 — Woluwe-Saint-Lambert,Apartment,,449000,2,110,1,1,0,100,,,,3,1,To be done up,20185839,"('Under option', 'No')"
1200 — Woluwe-Saint-Lambert,Apartment,,450000,3,128,1,1,0,22,,,,2,1,Good,20227681,No
1150 — Woluwe-Saint-Pierre,Apartment,,590000,3,160,1,1,0,0,,,,3,1,To renovate,20284375,No
1000 — Bruxelles,Apartment,,1175000,4,260,1,1,0,0,,,,3,1,As new,20281740,No
8500 — Kortrijk,Apartment,,170000,2,70,0,1,0,0,,,,,0,Good,20300203,No
8500 — Kortrijk,Apartment,,290000,2,134,0,1,0,0,,,,,0,Good,20300205,No
9820 — Merelbeke,Apartment,,299000,2,155,1,0,0,0,,,,,0,To renovate,20299955,No
1770 — Liedekerke,,Ground,235000,2,84,1,1,0,20,,,,3,0,Just renovated,20313853,No
,,,,0,0,0,0,,,,,0,,,,,
2018 — Antwerpen,Apartment,,338000,2,87,0,0,0,4,,,,3,0,Good,20315029,No
1300 — WAVRE,Apartment,,130000,1,55,1,1,0,0,,,,2,1,Good,20281148,No
2610 — WILRIJK,Apartment,,299000,2,105,1,0,0,13,,,,,0,Good,20282367,No
4000 — LIÈGE,Apartment,,329000,3,162,1,0,0,9,,,,2,0,Good,20281076,No
4000 — LIÈGE,Apartment,,920000,8,360,1,0,0,18,45,45,,3,0,Good,20281160,No
9000 — Gent,Apartment,,335000,2,92,1,0,0,6,,,,2,0,Good,20309085,No
1000 — Bruxelles,Apartment,,385000,2,94,1,0,0,20,,,,,0,Good,20307457,No
1000 — Brussel,Apartment,,330000,2,107,1,0,0,19,,,,3,1,Good,20311721,No
9051 — Sint-Denijs-Westrem,Apartment,,170000,1,68,1,0,0,0,,,,,1,Good,20296869,No
9051 — Sint-Denijs-Westrem,Apartment,,210000,2,90,0,0,0,0,,,,,1,Good,20296871,No
1000 — Bruxelles,,Flat,235000,1,59,1,1,0,0,,,,2,1,Good,20295048,No
2600 — Berchem (2600),Apartment,,295000,2,90,0,1,0,2,,,,,0,Just renovated,20297010,No
5580 — ROCHEFORT,Apartment,,195000,4,162,0,1,0,0,,,,3,0,,20312314,No
1020 — LAEKEN (BRU.),,Ground,250000,2,82,1,0,0,3,90,90,,2,0,Good,20313010,No
8400 — Oostende,,Triplex,320000,3,113,1,1,0,16,,,,2,0,Just renovated,20311884,No
2018 — Antwerpen,Apartment,,398000,2,125,1,0,0,0,,,,3,0,Just renovated,20312993,No
1050 — Ixelles,Apartment,,399000,2,112,1,0,0,0,,,,2,1,As new,20313422,No
1040 — Etterbeek,Apartment,,385000,2,105,1,1,0,6,,,,3,1,As new,20290053,No
8400 — Oostende,,Penthouse,548000,3,141,0,1,0,4,,,,,0,As new,20290754,No
9060 — Zelzate,Apartment,,145000,2,67,1,0,0,0,,,,3,0,To renovate,20308317,No
8370 — Blankenberge,Apartment,,159900,2,48,1,1,0,0,,,,,0,Good,20303208,No
8370 — Blankenberge,Apartment,,280000,2,70,0,1,0,0,,,,,0,Just renovated,20304659,No
1000 — Brussel,Apartment,,299000,2,86,1,1,0,0,,,,2,1,To be done up,20309025,No
1200 — Woluwe-Saint-Lambert,Apartment,,525000,2,95,1,1,0,120,,,,,1,As new,20303458,No
1050 — Ixelles,Apartment,,695000,3,132,1,0,0,32,32,32,,2,1,As new,20306003,No
2170 — ANTWERPEN,,Ground,314900,3,125,1,0,0,0,150,150,,2,0,Just renovated,20283665,No
1080 — MOLENBEEK-SAINT-JEAN,,Flat,150000,1,46,1,0,0,12,,,,2,1,Good,20294885,No
8400 — Oostende,Apartment,,230000,2,85,0,1,0,7,,,,,0,Good,20294253,No
1000 — Brussel,Apartment,,435000,2,100,1,1,0,2,,,,2,1,Just renovated,20295888,No
2550 — KONTICH,Apartment,,245000,1,78,1,0,0,7,,,,,0,Good,20288717,No
2650 — EDEGEM,Apartment,,249000,3,92,1,0,0,0,,,,2,0,Good,20290301,"('Under option', 'No')"
2170 — MERKSEM,Apartment,,299000,2,130,1,0,0,0,110,110,,2,0,Just renovated,20284874,No
2170 — MERKSEM,,Ground,299000,2,130,1,0,0,0,110,110,,2,0,Just renovated,20289710,No
8370 — BLANKENBERGE,Apartment,,385000,3,124,1,0,0,0,,,,2,0,As new,20289489,No
6900 — Marche-en-Famenne,Apartment,,155000,3,85,1,1,0,0,,,,3,1,Good,20301397,No
2500 — LIER,Apartment,,417600,2,127,1,0,0,23,,,,2,0,,20305114,No
9290 — BERLARE,,Penthouse,1325000,2,320,1,0,1,106,,,,4,0,,20303645,"('Under option', 'No')"
2580 — Putte,Apartment,,298000,1,69,1,0,0,0,,,,,0,,20317413,No
2018 — Antwerpen,Apartment,,449000,2,165,0,0,0,6,,,,2,0,Good,20316628,No
2018 — Antwerpen,Apartment,,269900,2,92,1,1,0,4,,,,2,1,As new,20309673,No
4100 — Seraing Boncelles,Apartment,,360000,3,116,1,1,0,5,,,,,1,As new,20309411,No
1050 — Ixelles,Apartment,,610000,3,122,1,0,0,15,,,,2,1,Good,20293996,No
1030 — Schaerbeek,Apartment,,142500,1,44,1,1,0,0,,,,2,1,Good,20240771,No
,,,,0,0,0,0,,,,,0,,,,,
1040 — Etterbeek,Apartment,,195000,1,64,1,1,0,0,,,,2,1,To renovate,20222176,No
1070 — Anderlecht,,Ground,265000,3,85,1,1,0,4,,,,2,1,As new,20231857,"('Under option', 'No')"
1030 — Schaerbeek,Apartment,,295000,2,75,1,1,0,6,,,,2,1,As new,20266489,No
1200 — Woluwe-Saint-Lambert,Apartment,,295000,1,65,1,1,0,4,,,,,1,As new,20230625,"('Under option', 'No')"
1080 — Molenbeek-Saint-Jean,Apartment,,310000,3,117,1,1,0,16,,,,3,1,As new,20265748,No
,,,,0,0,0,0,,,,,0,,,,,
1000 — Brussels,Apartment,,460000,2,185,1,1,0,17,,,,2,1,As new,20228295,No
1200 — Woluwe-Saint-Lambert,,Penthouse,1195000,4,215,1,1,0,45,,,,3,1,As new,20200669,No
8400 — Oostende,Apartment,,275000,2,107,1,1,0,1,,,,,0,,20299953,No
4960 — Malmedy,,Ground,280000,3,129,1,1,0,3749,60,60,,3,1,As new,20302351,No
9700 — Oudenaarde,Apartment,,297000,2,72,1,1,0,16,,,,4,1,As new,20300424,No
1190 — Forest,Apartment,,399000,2,95,1,1,0,0,,,,2,1,Just renovated,20297894,No
4520 — HUY,,Ground,220000,1,81,1,0,0,17,,,,2,0,,20316998,No
1050 — Ixelles,,Penthouse,865000,3,195,1,1,0,45,,,,3,1,To renovate,20315168,No
6800 — Libramont,Apartment,,189000,2,81,0,0,0,0,,,,2,0,Good,20293422,No
8210 — Zedelgem,Apartment,,255000,2,98,0,1,0,0,,,,,0,Good,20307470,No
9000 — Gent,Apartment,,279000,1,52,1,0,0,0,,,,,0,Just renovated,20307478,No
1000 — Bruxelles,Apartment,,325000,1,53,1,1,0,0,,,,2,1,Just renovated,20307381,No
9000 — Gent,Apartment,,325000,1,83,0,1,0,0,,,,,0,To renovate,20307460,No
1000 — Bruxelles,Apartment,,345000,1,53,1,1,0,0,,,,2,1,Just renovated,20307827,No
1070 — Anderlecht,Apartment,,375000,3,110,1,1,0,19,,,,2,1,As new,20306645,No
9000 — Gent,,Duplex,375000,10,100,0,1,0,0,,,,,0,Good,20307456,No
2640 — Mortsel,Apartment,,279000,3,97,1,0,0,0,,,,4,0,Good,20298171,No
4020 — Liège,Apartment,,445000,3,140,1,1,0,0,,,,3,1,As new,20295823,No
1000 — Bruxelles,Apartment,,490000,3,180,1,1,0,9,,,,2,1,Good,20298182,No
2610 — Wilrijk,Apartment,,375000,3,121,1,1,0,0,,,,2,0,Good,20312357,No
9000 — GENT,,Penthouse,398000,3,96,1,0,0,16,,,,4,0,,20312437,No
2430 — LAAKDAL,Apartment,,439000,3,135,1,0,0,10,,,,3,0,,20312524,No
2610 — WILRIJK,Apartment,,259000,3,110,1,0,0,5,,,,,0,To be done up,20291808,No
1050 — Ixelles,Apartment,,375000,3,100,1,1,0,9,,,,2,1,To be done up,20290254,No
2060 — ANTWERPEN,Apartment,,189000,1,45,1,0,0,0,,,,2,0,Just renovated,20305773,No
9000 — Gent,Apartment,,595000,2,129,0,0,0,17,,,,,1,As new,20306038,No
1040 — Etterbeek,Apartment,,750000,3,155,1,1,0,6,,,,2,1,Just renovated,20305895,No
1180 — Uccle,Apartment,,239000,2,76,1,1,0,10,,,,2,1,To be done up,20245205,"('Under option', 'No')"
9880 — Aalter,Apartment,,379000,2,93,1,1,0,14,,,,,0,Good,20282323,No
1030 — Schaerbeek,Apartment,,430000,2,100,1,1,0,10,,,,3,1,As new,20252770,No
8301 — Heist-aan-Zee,,Duplex,1650000,4,173,1,1,0,40,,,,2,0,Good,20282649,No
6600 — BASTOGNE,Apartment,,315000,3,125,1,0,0,22,27,27,,2,0,,20296398,No
1150 — Woluwe-Saint-Pierre,Apartment,,395000,2,85,1,1,0,4,,,,,1,As new,20294684,No
1000 — BRUXELLES,Apartment,,420000,3,123,1,0,0,2,,,,2,0,Just renovated,20295064,No
1000 — Brussels,Apartment,,475000,3,100,1,0,0,6,,,,2,1,As new,20294600,No
1150 — Woluwe-Saint-Pierre,Apartment,,645000,4,155,1,0,1,12,,,,2,1,As new,20293863,No
1200 — Woluwe-Saint-Lambert,Apartment,,495000,2,90,1,1,0,8,,,,2,1,As new,20257426,No
2600 — BERCHEM,,Ground,179000,2,84,1,0,0,0,,,,,0,To renovate,20289026,No
8380 — ZEEBRUGGE,Apartment,,299500,2,106,1,0,0,10,,,,2,0,Good,20288494,No
1030 — Schaarbeek,Apartment,,275000,2,85,1,1,0,18,,,,,1,As new,20303342,No
5100 — JAMBES,Apartment,,399000,2,104,1,0,0,75,,,,,0,,20304550,No
8300 — Knokke,Apartment,,525000,2,100,0,1,0,0,,,,,0,Good,20302714,No
1080 — Molenbeek-Saint-Jean,,Penthouse,470000,2,130,1,1,0,90,,,,2,0,,20317979,No
,,,,0,0,0,0,,,,,0,,,,,
4000 — Liège,Apartment,,210000,3,120,1,1,0,0,,,,4,1,Good,20267532,No
4690 — Bassenge,,Duplex,274000,4,214,1,1,0,84,,,,3,1,As new,20141631,No
1932 — Woluwe-Saint-Etienne,Apartment,,280000,2,86,1,1,0,16,,,,4,1,Good,20284128,No
2830 — BLAASVELD,Apartment,,288000,2,85,1,0,0,15,,,,,0,Good,20287145,No
1070 — Anderlecht,Apartment,,295000,2,95,1,1,0,12,,,,4,1,Good,20284185,No
1332 — Genval,Apartment,,295000,1,62,1,1,0,5,2000,2000,,,1,As new,20233289,No
1090 — Jette,Apartment,,299000,3,128,1,1,0,0,,,,2,1,Good,20260785,No
1030 — Schaerbeek,,Loft,1095000,3,315,1,1,0,25,,,,2,0,As new,20225402,No
1050 — Ixelles,,Penthouse,1350000,5,395,1,0,1,100,,,,4,1,As new,20302285,No
8430 — MIDDELKERKE,,Flat,115000,1,35,1,1,0,0,,,,,0,Good,20316962,No
,,,,0,0,0,0,,,,,0,,,,,
1180 — Uccle,Apartment,,450000,3,120,1,1,0,16,,,,4,0,,20316517,No
1070 — Anderlecht,Apartment,,270000,2,75,1,1,0,8,,,,,1,As new,20221575,No
1082 — Berchem-Sainte-Agathe,Apartment,,180000,1,70,1,1,0,10,,,,2,1,Good,20307836,No
1150 — Woluwe-Saint-Pierre,Apartment,,335000,2,70,1,1,0,6,,,,2,1,As new,20307223,No
9000 — Gent,Apartment,,385000,1,73,0,1,0,0,,,,,0,Good,20307442,No
1190 — Forest,Apartment,,229000,1,61,1,1,0,8,,,,,1,As new,20295057,No
1190 — Forest,Apartment,,229000,1,67,1,1,0,4,,,,,1,As new,20295042,No
1190 — Forest,Apartment,,239000,1,61,1,1,0,8,,,,,1,As new,20295041,No
1000 — Bruxelles,Apartment,,299000,2,70,1,1,0,0,,,,2,1,Good,20294889,No
1190 — Forest,Apartment,,309000,2,95,1,1,0,4,,,,,1,As new,20295037,No
1190 — Forest,Apartment,,329000,2,95,1,1,0,4,,,,,1,To be done up,20295036,No
2600 — BERCHEM,Apartment,,385000,2,110,1,0,0,12,,,,,0,,20298375,No
1000 — BRUSSEL,Apartment,,628000,3,150,1,1,0,12,,,,2,0,Good,20299780,No
8301 — HEIST-AAN-ZEE,Apartment,,299000,2,62,0,0,0,0,,,,,0,To restore,20311390,No
8570 — Vichte,Apartment,,249000,2,90,1,0,0,0,,,,,0,Good,20290914,No
8300 — Knokke-Zoute,Apartment,,685000,2,80,1,1,0,0,,,,2,0,Good,20288792,No
8301 — Heist-aan-Zee,Apartment,,745000,3,169,0,1,0,22,,,,,0,As new,20290804,No
1050 — Bruxelles,,Penthouse,790000,3,188,1,0,1,20,,,,2,1,As new,20288769,No
8300 — Knokke-Zoute,Apartment,,2375000,2,105,1,1,0,0,,,,2,0,Just renovated,20288788,No
8370 — Blankenberge,Apartment,,140000,2,67,0,1,0,0,,,,,0,Good,20303192,No
8370 — Blankenberge,Apartment,,185000,2,72,0,1,0,0,,,,,0,To be done up,20304264,No
4000 — Liège,Apartment,,199000,1,72,1,1,0,0,,,,2,1,Good,20306316,No
2100 — DEURNE,Apartment,,199000,2,85,0,0,0,0,,,,2,0,As new,20284620,No
2000 — ANTWERPEN,Apartment,,245000,1,62,1,1,0,0,,,,3,0,Good,20284240,"('Under option', 'No')"
1060 — Sint-Gillis,Apartment,,388000,3,120,1,0,0,2,,,,,1,As new,20314983,No
8370 — BLANKENBERGE,Apartment,,399000,2,82,1,1,0,0,,,,2,0,Good,20284303,No
8400 — Oostende,Apartment,,135000,1,65,0,0,0,15,,,,,0,Good,20294254,No
1000 — BRUXELLES,Apartment,,165000,1,28,1,1,0,0,,,,2,0,As new,20295467,No
1050 — Bruxelles,Apartment,,490000,3,180,1,1,0,9,,,,2,1,Good,20296427,No
9660 — Brakel,,Loft,235000,2,310,1,0,0,0,,,,2,0,Good,20290573,No
1000 — Bruxelles,,Kot,146000,1,24,1,1,0,0,,,,2,1,As new,20301337,No
9040 — GENT,Apartment,,390000,4,210,0,0,0,2,,,,,0,,20305326,No
1000 — Bruxelles,Apartment,,189000,1,55,1,0,0,15,,,,2,0,To be done up,20316118,No
2640 — Mortsel,Apartment,,199000,2,90,1,0,0,1,,,,2,1,Good,20316821,No
1170 — Boitsfort (Watermael-Boitsfort),Apartment,,300000,2,93,0,1,0,14,,,,4,1,,20317526,No
2018 — Antwerpen,Apartment,,449000,2,165,0,0,0,12,45,45,,,0,As new,20316757,No
1000 — Bruxelles,Apartment,,460000,2,120,1,1,0,6,,,,2,1,As new,20318931,No
3500 — Hasselt,Apartment,,239000,2,108,0,0,0,15,,,,,0,Good,20293495,No
1050 — Ixelles,Apartment,,220000,1,60,1,1,0,6,,,,2,1,To renovate,20175838,"('Under option', 'No')"
1083 — Ganshoren,,Flat,220000,1,70,1,1,0,80,,,,2,1,To be done up,20236460,No
2018 — ANTWERPEN,Apartment,,295000,1,60,1,0,0,2,,,,2,0,Just renovated,20288074,"('Under option', 'No')"
1070 — Anderlecht,Apartment,,300000,2,108,1,1,0,0,,,,2,1,As new,20280742,No
6700 — Arlon,Apartment,,310000,2,82,1,1,0,5,,,,2,1,Good,20220248,No
1420 — Braine-l'Alleud,,Duplex,345000,3,127,1,1,0,6,,,,2,1,As new,20131199,No
1020 — Laeken,,Penthouse,365000,3,150,1,1,0,52,,,,2,1,To be done up,20209482,No
2018 — ANTWERPEN,,Duplex,375000,3,90,1,0,0,2,,,,2,0,Just renovated,20288075,"('Under option', 'No')"
9200 — SCHOONAARDE,,Duplex,275000,2,131,1,0,0,8,,,,2,0,Good,20300760,No
2000 — ANTWERPEN,,Penthouse,279000,1,71,1,0,0,0,,,,2,0,Good,20302311,No
1040 — Etterbeek,Apartment,,305000,2,71,1,1,0,0,,,,2,1,Good,20298873,No
1500 — HALLE,Apartment,,359000,2,95,1,0,0,0,,,,2,0,Good,20300880,No
1050 — IXELLES,Apartment,,425000,2,80,1,0,0,0,,,,3,0,Just renovated,20302587,No
1190 — FOREST,Apartment,,425000,2,80,1,0,0,0,,,,3,0,Just renovated,20302588,No
1050 — Ixelles,Apartment,,453000,2,118,1,1,0,11,,,,2,1,As new,20300005,No
1780 — WEMMEL,,Triplex,395000,4,200,1,0,0,31,,,,2,0,Good,20315386,No
1140 — Evere,Apartment,,405000,2,91,1,1,0,5,,,,2,1,As new,20313860,No
1000 — Brussel,Apartment,,725000,3,161,1,1,0,15,,,,4,1,As new,20315567,No
1030 — Schaerbeek,,Penthouse,725000,3,170,1,1,0,150,,,,4,1,As new,20315471,No
2170 — Antwerpen,Apartment,,192000,2,70,1,0,0,3,,,,4,1,Good,20226731,No
4100 — Boncelles,Apartment,,160000,1,42,1,0,0,5,,,,2,1,Good,20243296,"('Under option', 'No')"
9050 — Gentbrugge,Apartment,,269000,2,96,0,1,0,0,,,,,0,Good,20291996,No
8370 — BLANKENBERGE,,Flat,135000,1,,1,1,0,0,,,,2,0,Good,20309367,No
2100 — Antwerpen Deurne,Apartment,,174900,1,50,1,1,0,5,,,,2,1,As new,20307854,No
7100 — La Louvière,,Ground,180000,2,106,0,1,0,0,,,,,1,As new,20303288,No
9000 — Gent,Apartment,,368500,2,97,0,1,0,0,,,,,0,To renovate,20307437,No
9120 — Beveren-Waas,Apartment,,490000,3,195,0,1,0,0,,,,,0,As new,20308639,No
9051 — Gent,Apartment,,495000,3,200,0,0,0,0,,,,,0,Good,20306521,No
2640 — MORTSEL,,Ground,225000,1,55,1,0,0,30,106,106,,2,0,Good,20262780,No
1800 — Vilvoorde,Apartment,,160000,1,55,0,0,0,0,,,,,0,To renovate,20297323,No
1040 — Etterbeek,,Flat,220000,45,45,1,0,0,6,,,,4,0,Good,20299124,No
2100 — Deurne,Apartment,,245000,2,70,1,1,0,10,,,,2,1,As new,20296226,No
2100 — Deurne,,Penthouse,399000,3,145,1,1,0,52,,,,2,1,To be done up,20296225,No
1730 — Asse,Apartment,,309000,2,90,1,0,0,18,,,,1,1,As new,20291770,No
1410 — Waterloo,,Penthouse,485000,1,76,1,1,0,10,,,,,1,As new,20313340,No
2140 — BORGERHOUT,Apartment,,225000,2,82,1,0,0,6,,,,,0,Good,20275567,No
9700 — Oudenaarde,Apartment,,195000,2,93,0,1,0,28,,,,2,0,Good,20203522,No
8610 — KORTEMARK,Apartment,,159000,2,80,1,0,0,0,,,,2,0,Good,20306364,No
4900 — Spa,,Duplex,298500,2,86,1,1,0,9,,,,2,1,Good,20304084,No
9420 — MERE,Apartment,,360000,2,101,1,0,0,8,,,,3,0,,20306061,No
1150 — Woluwe-Saint-Pierre,Apartment,,390000,2,81,1,1,0,4,,,,,1,Good,20304004,No
2550 — KONTICH,Apartment,,249000,2,85,1,0,0,0,,,,2,0,Good,20284314,"('Under option', 'No')"
4000 — Liège,,Ground,149900,2,85,1,1,0,29,,,,,1,Just renovated,20296735,No
6224 — WANFERCÉE-BAULET,Apartment,,160000,2,67,1,0,0,0,,,,3,0,Good,20296622,"('Under option', 'No')"
2870 — RUISBROEK,Apartment,,195000,1,60,1,0,0,6,,,,2,0,,20295311,No
1370 — Jodoigne,Apartment,,200000,2,82,1,0,0,0,,,,3,0,,20295460,No
7800 — ATH,Apartment,,290000,2,81,1,0,0,0,,,,,0,,20239561,No
9000 — GENT,Apartment,,290000,2,115,1,0,0,5,,,,,0,,20295963,No
9120 — Beveren,Apartment,,289000,2,138,1,1,0,10,,,,,1,As new,20310430,No
3500 — Hasselt,Apartment,,220000,2,85,1,0,0,0,,,,,0,Good,20287638,No
2800 — Mechelen,Apartment,,248000,1,76,1,0,0,0,,,,,0,,20302810,No
9810 — Nazareth,Apartment,,265000,1,60,0,0,0,0,,,,,0,Good,20302612,No
2018 — Antwerpen-Zuid,Apartment,,329000,2,105,1,1,0,5,,,,2,1,Good,20302026,No
1000 — Brussel,,Loft,449000,2,165,1,1,0,0,,,,2,1,Good,20303176,No
8500 — Kortrijk,,Loft,465000,2,180,1,1,0,0,,,,,0,,20302546,No
9000 — Gent,Apartment,,474000,2,79,1,1,0,12,,,,2,1,As new,20305014,No
8570 — Anzegem,Apartment,,1670000,42,420,0,1,0,0,,,,4,0,Good,20302632,No
8370 — Blankenberge,Apartment,,269999,2,93,1,1,0,0,,,,3,1,Good,20317960,No
,,,,0,0,0,0,,,,,0,,,,,
2870 — Puurs-Sint-Amands,Apartment,,849000,5,557,0,0,0,19,185,185,,,0,As new,20317263,No
1050 — Ixelles,,Duplex,799000,3,168,1,0,0,20,45,45,,2,1,As new,20302886,No
2300 — Turnhout,Apartment,,263000,2,84,0,0,0,5,52,52,,2,1,Just renovated,20316762,No
9000 — Gent,Apartment,,225000,2,68,1,1,0,0,,,,3,0,As new,20309855,No
1300 — WAVRE,Apartment,,149000,1,47,1,1,0,0,,,,2,1,Good,20270990,No
1300 — WAVRE,Apartment,,159000,1,49,1,1,0,0,,,,2,1,Good,20270989,No
1300 — WAVRE,Apartment,,229000,3,131,1,1,0,0,,,,2,1,Good,20270987,No
1300 — WAVRE,,Ground,229000,3,126,1,1,0,0,,,,2,1,Good,20270988,No
1180 — Uccle,Apartment,,445000,2,120,1,1,0,12,90,90,,2,1,To renovate,20254019,"('Under option', 'No')"
1160 — Auderghem,Apartment,,449000,2,120,1,1,0,25,50,50,,,1,As new,20209328,"('Under option', 'No')"
1210 — Saint-Josse-ten-Noode,Apartment,,139000,1,44,1,1,0,0,,,,2,1,To be done up,20237973,No
1210 — Saint-Josse-ten-Noode,Apartment,,169000,1,61,1,1,0,0,,,,2,1,To be done up,20238677,"('Under option', 'No')"
1040 — Etterbeek,Apartment,,195000,1,64,1,1,0,0,,,,2,1,To renovate,20284355,No
9700 — Oudenaarde,Apartment,,195000,2,121,0,1,0,10,,,,2,0,Good,20285478,No
1000 — Bruxelles,Apartment,,197500,1,52,1,1,0,0,,,,2,1,As new,20270973,"('Under option', 'No')"
1000 — Bruxelles,Apartment,,229500,1,65,1,1,0,0,,,,2,1,Good,20221915,No
1200 — Woluwe-Saint-Lambert,Apartment,,245000,1,68,1,1,0,12,,,,2,1,As new,20217508,No
1080 — MOLENBEEK-SAINT-JEAN,Apartment,,265000,2,83,1,0,0,4,,,,2,1,As new,20259952,No
1080 — Molenbeek-Saint-Jean,Apartment,,295000,3,98,1,1,0,5,,,,2,1,As new,20210100,No
1040 — Etterbeek,,Flat,299000,1,45,1,1,0,9,20,20,,2,1,As new,20253431,No
1040 — Etterbeek,Apartment,,319000,2,100,1,1,0,5,,,,,1,Good,20242296,No
1070 — Anderlecht,Apartment,,319000,2,95,1,1,0,10,,,,2,1,Good,20284709,No
1070 — Anderlecht,Apartment,,335000,2,107,1,1,0,20,,,,2,1,As new,20280777,No
1160 — Auderghem,,Ground,380000,2,80,1,0,0,4,,,,3,1,As new,20278545,No
1200 — Woluwe-Saint-Lambert,Apartment,,435000,2,93,1,1,0,16,,,,2,1,As new,20222727,No
,,,,0,0,0,0,,,,,0,,,,,
1050 — Ixelles,Apartment,,790000,3,220,1,1,0,0,,,,2,1,Good,20211666,No
1180 — UCCLE,Apartment,,1680000,6,320,1,0,0,50,210,210,,2,0,As new,20277902,No
6987 — Rendeux,,Duplex,125000,1,64,1,1,0,0,,,,2,0,Good,20300851,No
9300 — Aalst,Apartment,,269000,1,59,1,1,0,0,,,,2,1,As new,20297921,No
8400 — Oostende,Apartment,,355000,2,96,0,1,0,3,,,,,0,Good,20299621,No
8400 — Oostende,,Duplex,355000,2,103,0,0,0,6,,,,,0,Good,20299598,No
1050 — Ixelles,Apartment,,790000,2,112,1,1,0,26,,,,2,1,Just renovated,20298104,No
1050 — Ixelles,Apartment,,235000,1,70,0,1,0,0,,,,2,0,,20313403,No
2610 — WILRIJK,Apartment,,185000,1,35,1,0,0,3,,,,2,0,Just renovated,20281777,No
2610 — WILRIJK,Apartment,,195000,1,35,1,0,0,3,,,,2,0,Just renovated,20281778,No
3001 — HEVERLEE,Apartment,,360000,3,102,1,0,0,2,,,,,0,Good,20268459,No
1000 — Bruxelles,,Flat,175000,1,35,1,1,0,10,,,,,1,To renovate,20308243,No
1030 — Schaarbeek,Apartment,,239000,1,63,1,1,0,12,,,,2,1,Good,20306844,No
2100 — Deurne,Apartment,,219000,2,75,1,1,0,0,,,,2,0,Just renovated,20296227,No
1160 — Auderghem,,Flat,250000,1,41,1,1,0,3,,,,,1,As new,20294832,No
1020 — Bruxelles,,Duplex,275000,3,120,1,1,0,4,,,,2,1,To renovate,20297524,No
9810 — Nazareth,Apartment,,289000,2,108,0,1,0,0,,,,,0,,20297173,No
9000 — Gent,,Ground,419000,3,92,1,1,0,0,45,45,,2,1,As new,20296344,No
1000 — BRUSSEL,Apartment,,545000,2,110,1,0,0,13,,,,,0,Good,20299783,No
2000 — ANTWERPEN,,Loft,325000,1,65,1,0,0,0,,,,,0,Good,20291330,No
1081 — Koekelberg,Apartment,,235000,2,85,0,0,0,5,,,,,0,Good,20305488,No
2900 — Schoten,Apartment,,384900,2,108,1,1,0,42,,,,2,1,As new,20304244,No
1081 — Koekelberg,Apartment,,220000,2,100,1,0,1,10,,,,2,1,To be done up,20280391,"('Under option', 'No')"
1070 — Anderlecht,Apartment,,279000,2,105,1,0,0,16,,,,,1,As new,20275685,"('Under option', 'No')"
1190 — Forest,Apartment,,295000,2,72,1,0,0,8,,,,2,1,Good,20143305,"('Under option', 'No')"
1040 — Etterbeek,Apartment,,330000,1,83,1,0,0,3,,,,2,1,Good,20200112,No
1030 — Schaarbeek,Apartment,,349000,2,90,1,0,0,4,,,,2,1,Good,20222419,"('Under option', 'No')"
1300 — WAVRE,,Ground,365000,2,140,1,1,0,15,70,70,,2,1,Just renovated,20207728,"('Under option', 'No')"
1000 — Brussel,Apartment,,485000,2,109,1,0,0,0,36,36,,2,1,As new,20082967,"('Under option', 'No')"
1180 — Uccle,,Penthouse,685000,2,127,1,0,0,55,,,,4,1,Just renovated,20279643,No
1150 — Woluwe-Saint-Pierre - Sint-Pieters-Woluwe,Apartment,,795000,3,170,1,0,0,15,,,,2,1,Good,20161958,"('Under option', 'No')"
8530 — Harelbeke,Apartment,,195000,3,100,1,0,0,4,,,,2,0,Good,20268729,No
1030 — Schaerbeek,,Ground,349000,2,108,1,1,0,0,31,31,,2,1,Good,20273285,No
9620 — Zottegem,Apartment,,365000,3,145,1,0,0,8,,,,,0,Good,20282703,No
2650 — Edegem,Apartment,,295000,2,,1,0,0,5,,,,2,1,As new,20315427,No
9000 — Gent,Apartment,,229000,1,44,1,0,0,0,,,,2,0,Good,20294803,No
9800 — Deinze,Apartment,,229000,2,80,1,1,0,0,,,,2,1,As new,20296497,"('Under option', 'No')"
1300 — Wavre,Apartment,,240000,2,88,1,1,0,0,,,,2,1,To be done up,20229232,"('Under option', 'No')"
8720 — Wakken,Apartment,,149900,1,62,1,1,0,0,,,,,0,Good,20287602,No
3000 — Leuven,,Flat,245000,1,30,1,1,0,6,,,,,0,Good,20287715,No
1020 — Laeken,Apartment,,259000,2,96,1,1,0,3,,,,2,1,As new,20286409,No
4420 — SAINT-NICOLAS,Apartment,,139500,1,42,1,0,0,10,,,,2,0,Just renovated,20305346,No
8420 — Klemskerke,Apartment,,145000,1,39,0,0,0,4,,,,,0,As new,20302518,No
2600 — Antwerpen Berchem,Apartment,,159900,2,77,1,1,0,5,,,,2,1,Good,20302974,No
1000 — Bruxelles,Apartment,,179000,1,39,1,1,0,0,,,,3,1,Good,20302266,No
1050 — Ixelles,Apartment,,250000,1,45,1,1,0,22,70,70,,2,1,Good,20303814,No
9000 — Gent,Apartment,,270000,2,74,0,0,0,3,,,,,0,To be done up,20300686,No
1070 — Anderlecht,Apartment,,330000,2,76,0,0,0,0,,,,,0,Good,20302074,No
2500 — Lier,,Duplex,349000,3,133,1,0,0,0,,,,,0,,20302794,No
3000 — Leuven,Apartment,,349000,2,90,0,0,0,5,,,,,0,,20302527,No
1030 — Schaarbeek,Apartment,,699000,3,329,1,0,0,0,,,,,0,To renovate,20302572,No
8380 — Zeebrugge,Apartment,,745000,3,168,0,0,0,0,,,,,0,Good,20301028,No
2170 — Merksem,Apartment,,187500,1,65,1,0,0,10,10,10,,,1,As new,20316216,No
1180 — Uccle,Apartment,,397000,3,114,1,0,0,0,,,,4,1,Good,20318373,No
8450 — Bredene,Apartment,,630000,2,,0,0,0,0,,,,,0,,20317932,No
1180 — Uccle,Apartment,,695000,2,192,0,1,1,30,,,,3,1,Good,20317988,No
8300 — Knokke-Heist,,Duplex,1195000,3,135,1,0,0,0,,,,2,1,As new,20318391,No
,,,,0,0,0,0,,,,,0,,,,,
2000 — ANTWERPEN,Apartment,,349000,2,73,1,0,0,10,,,,2,0,As new,20073959,"('Under option', 'No')"
8300 — Knokke,Apartment,,635000,2,89,1,1,0,8,,,,2,0,Good,20275314,No
8370 — BLANKENBERGE,Apartment,,329000,3,159,0,0,1,40,,,,,0,To be done up,20184181,No
8370 — Blankenberge,Apartment,,245000,2,100,0,0,0,0,,,,,0,Good,20293498,No
2660 — HOBOKEN,Apartment,,155000,1,63,0,0,0,6,,,,2,0,Just renovated,20271230,"('Under option', 'No')"
1080 — Molenbeek-Saint-Jean,,Ground,198000,1,55,1,1,0,0,,,,2,1,Just renovated,20280745,No
1070 — Anderlecht,Apartment,,200000,2,66,1,1,0,3,,,,2,1,As new,20221840,No
9000 — Gent,Apartment,,299000,1,61,1,0,0,6,,,,2,1,As new,20230126,No
1050 — Ixelles,,Penthouse,338000,2,76,1,1,0,11,,,,2,1,Good,20194149,"('Under option', 'No')"
1050 — Ixelles,,Ground,400000,2,135,1,0,0,0,,,,2,1,Good,20267881,No
1180 — Uccle,Apartment,,415000,3,88,1,1,0,3,300,300,,2,1,Good,20276338,No
1040 — Etterbeek,Apartment,,695000,3,167,1,1,0,6,,,,3,1,Good,20244492,No
8300 — Knokke-Zoute,Apartment,,799000,2,85,1,1,0,0,,,,2,0,Just renovated,20284951,No
1150 — Woluwe-Saint-Pierre,Apartment,,1450000,3,330,1,1,0,40,,,,2,1,As new,20221931,No
1180 — Uccle,Apartment,,3990000,4,446,1,0,1,100,1000,1000,,,1,As new,20217744,No
2630 — AARTSELAAR,Apartment,,224000,2,89,1,0,0,0,,,,2,0,Good,20288137,No
6760 — Virton,,Triplex,169000,3,126,1,1,0,0,,,,2,1,Good,20300469,No
1060 — Saint-Gilles,,Flat,185000,1,48,1,1,0,0,,,,2,1,As new,20298181,No
1030 — Schaerbeek,Apartment,,390000,2,121,1,1,0,0,,,,2,1,As new,20300656,No
2580 — Putte,Apartment,,695000,3,153,1,0,0,0,,,,,0,,20300227,No
9800 — Deinze,Apartment,,239000,2,162,1,1,0,0,,,,2,1,Good,20301955,No
1200 — Woluwe-Saint-Lambert,Apartment,,265000,1,63,1,1,0,0,,,,3,1,To be done up,20313046,No
8300 — Knokke-Heist,Apartment,,399000,1,48,1,1,0,0,,,,,1,Good,20314559,No
2000 — Antwerpen,Apartment,,419000,2,80,0,1,0,20,,,,3,0,Good,20316059,No
8300 — Knokke,Apartment,,449000,2,76,1,0,0,0,,,,,0,,20314368,No
2000 — Antwerpen (2000),Apartment,,549000,2,129,1,1,0,10,1400,1400,,,0,As new,20264680,No
8500 — KORTRIJK,Apartment,,275000,2,103,1,0,0,0,,,,2,0,Good,20281065,No
8530 — Harelbeke,,Penthouse,669000,3,144,0,1,0,51,,,,,0,Good,20280152,No
8420 — De Haan,Apartment,,89000,1,42,1,1,0,0,,,,,0,To be done up,20292049,No
2640 — Mortsel,Apartment,,220000,2,96,1,0,0,0,,,,3,1,Good,20291589,No
1000 — BRUSSEL,Apartment,,285000,1,58,1,0,0,11,,,,4,0,Good,20293354,No
1060 — Saint-Gilles,Apartment,,625000,1,150,1,1,0,25,,,,,1,As new,20291733,No
6060 — Gilly,Apartment,,135000,2,75,1,1,0,4,,,,4,1,To be done up,20307966,No
1082 — Berchem-sainte-agathe,Apartment,,269000,1,84,1,1,0,0,,,,4,1,Good,20307731,No
1030 — Schaarbeek,Apartment,,318000,2,108,1,1,0,7,,,,2,1,To be done up,20306714,No
1050 — Ixelles,,Duplex,1600000,3,356,0,1,0,80,,,,2,0,As new,20308890,No
8370 — BLANKENBERGE,,Flat,136000,1,26,1,1,0,0,,,,2,0,Good,20279233,No
8780 — OOSTROZEBEKE,Apartment,,140000,2,142,0,0,0,7,,,,2,0,Good,20279338,No
8780 — OOSTROZEBEKE,Apartment,,149000,2,117,0,0,0,7,,,,2,0,Good,20279337,No
8780 — OOSTROZEBEKE,Apartment,,165000,2,125,0,0,0,20,,,,2,0,Good,20279343,No
8700 — Tielt (8700),Apartment,,193000,1,67,0,1,0,14,,,,,0,Good,20278359,No
8370 — BLANKENBERGE,Apartment,,289000,1,72,1,1,0,0,,,,2,0,Good,20279076,"('Under option', 'No')"
9052 — Zwijnaarde,Apartment,,299000,2,94,1,1,0,5,,,,,0,Good,20278358,No
8540 — DEERLIJK,Apartment,,180000,2,81,1,0,0,1,,,,,0,Good,11263737,No
9000 — Gent,Apartment,,299000,4,150,1,1,0,0,70,70,,2,0,To renovate,20295809,No
2610 — Antwerpen,Apartment,,255000,3,88,0,0,0,0,,,,,0,As new,20314990,No
8400 — Oostende,Apartment,,195000,2,95,0,1,0,2,,,,,0,To be done up,20272656,No
1070 — Anderlecht,Apartment,,170000,1,60,1,1,0,0,,,,,1,Good,20291927,No
8300 — Knokke-Zoute,Apartment,,2775000,4,164,1,0,0,0,,,,3,0,As new,20288796,No
4500 — Huy,Apartment,,139500,1,55,1,1,0,9,,,,2,0,Good,20303484,No
4000 — Liège,Apartment,,169000,1,60,1,1,0,0,,,,2,1,Good,20308642,No
1490 — COURT-SAINT-ETIENNE,Apartment,,170000,1,42,1,0,0,5,,,,2,0,Good,20307673,No
8400 — Oostende,Apartment,,189000,1,52,0,1,0,0,,,,,0,,20305561,No
1080 — Sint-Jans-Molenbeek,Apartment,,250000,2,101,1,1,0,0,,,,2,1,Good,20307259,No
1200 — Woluwe-Saint-Lambert,Apartment,,345000,2,111,1,1,0,3,,,,2,1,Good,20308230,No
1070 — Anderlecht,Apartment,,135000,1,60,1,0,0,0,,,,2,1,To renovate,11361102,"('Under option', 'No')"
2020 — ANTWERPEN,,Ground,219000,2,87,0,0,0,21,84,84,,2,0,To renovate,20241279,"('Under option', 'No')"
2020 — ANTWERPEN,Apartment,,219000,2,87,0,0,0,21,84,84,,2,0,To renovate,20241277,"('Under option', 'No')"
2880 — BORNEM,Apartment,,224000,2,84,1,0,0,0,53,53,,2,0,Good,11388139,"('Under option', 'No')"
2861 — SINT-KATELIJNE-WAVER,,Ground,274750,1,75,1,0,0,4,37,37,,3,0,Good,11363312,No
2100 — DEURNE,Apartment,,284000,3,89,1,0,0,3,97,97,,2,0,To be done up,20188985,"('Under option', 'No')"
2500 — LIER,,Ground,285000,2,114,1,0,0,31,31,31,,2,0,Just renovated,20201049,No
1020 — Brussel,Apartment,,299000,2,106,1,0,0,10,,,,2,1,Good,20083285,No
1140 — Evere,Apartment,,425000,3,115,1,0,0,6,,,,2,1,As new,11355855,"('Under option', 'No')"
2140 — BORGERHOUT,Apartment,,149500,1,48,1,0,0,20,,,,,0,Good,20285365,No
2140 — BORGERHOUT,,Penthouse,149500,1,48,1,0,0,20,,,,,0,Good,20285364,No
9450 — Haaltert,Apartment,,365000,2,114,0,1,0,25,,,,,0,Good,20282789,No
8300 — Knokke-Zoute,Apartment,,2125000,3,117,1,1,0,0,,,,3,0,Good,20282555,No
6761 — Latour,Apartment,,135000,2,135,1,0,0,0,,,,2,0,Good,20296108,No
9000 — Gent,Apartment,,185000,2,100,1,1,0,10,,,,2,0,To renovate,20294138,No
9000 — Gent,Apartment,,185000,2,100,1,1,0,10,,,,2,0,To renovate,20294137,No
9000 — Gent,Apartment,,229000,1,43,1,0,0,0,,,,2,0,Good,20294805,No
1180 — Uccle,Apartment,,245000,2,70,1,1,0,8,,,,2,1,Good,20294824,No
2930 — BRASSCHAAT,Apartment,,329000,1,145,1,0,0,60,,,,2,0,Good,20294817,No
1080 — Molenbeek-saint-jean,,Penthouse,339000,2,100,1,1,0,86,,,,2,1,To be done up,20295301,No
8300 — KNOKKE,Apartment,,359000,1,59,1,0,0,0,,,,2,0,To be done up,20296305,No
2140 — Borgerhout,Apartment,,169000,1,55,1,1,0,0,,,,2,0,Good,20310562,No
3060 — BERTEM,Apartment,,345000,1,68,1,0,0,0,,,,2,0,,20308136,No
1200 — Woluwe-Saint-Lambert,Apartment,,220000,1,58,1,1,0,0,,,,2,1,To be done up,20276535,No
1083 — Ganshoren,Apartment,,325000,2,93,1,1,0,8,,,,2,0,As new,20148078,"('Under option', 'No')"
9820 — Merelbeke,Apartment,,275000,1,62,0,1,0,0,,,,,0,Just renovated,20287747,No
1081 — Koekelberg,Apartment,,295000,2,98,1,1,0,5,,,,2,1,As new,20286062,No
1050 — Ixelles,Apartment,,445000,2,85,1,1,0,1,,,,2,1,Just renovated,20287839,No
8400 — Oostende,,Penthouse,1195000,2,156,0,0,0,0,,,,,0,As new,20287384,No
5537 — Anhée,Apartment,,179000,1,92,1,1,0,0,,,,2,1,As new,20301396,No
4420 — MONTEGNÉE,Apartment,,199500,3,83,1,0,0,0,,,,2,0,Just renovated,20305344,No
2500 — LIER,,Penthouse,335000,2,92,1,0,0,14,,,,2,0,,20303845,No
1170 — Watermael-Boitsfort,Apartment,,450000,3,115,1,0,1,34,,,,3,1,Good,20304349,No
1050 — Ixelles,Apartment,,950000,3,203,1,1,0,8,,,,,1,,20305637,No
2100 — ANTWERPEN,Apartment,,174900,2,70,1,0,0,3,,,,2,0,To be done up,20261211,No
9800 — Deinze,Apartment,,139000,1,52,1,1,0,10,,,,2,1,Just renovated,20319463,No
8620 — Nieuwpoort,Apartment,,280000,1,65,1,0,0,0,,,,,0,Good,20319018,No
3600 — Genk,Apartment,,235000,2,78,1,0,0,4,,,,,0,Just renovated,20275379,No
1600 — Sint-Pieters-Leeuw,Apartment,,259000,2,98,1,1,0,4,,,,,0,Good,20275412,"('Under option', 'No')"
,,,,0,0,0,0,,,,,0,,,,,
8450 — Bredene,Apartment,,319000,2,87,1,0,0,7,,,,,0,Good,20275511,No
8300 — Knokke,,Duplex,599000,2,88,1,1,0,4,,,,2,0,Good,20275313,No
6700 — ARLON,Apartment,,285000,2,77,1,0,0,0,,,,,0,Good,20293822,No
9030 — Mariakerke,Apartment,,229500,2,96,0,0,0,0,,,,,0,,20309746,No
1050 — Ixelles,Apartment,,339000,1,87,1,0,0,0,,,,2,1,Good,20309401,No
8370 — Blankenberge,Apartment,,340000,2,73,1,1,0,3,,,,2,1,To be done up,20309403,No
1050 — Elsene,,Ground,370000,2,76,1,1,0,0,,,,2,0,Good,20309980,No
1300 — WAVRE,Apartment,,169000,1,63,1,1,0,0,,,,2,1,Good,20270991,No
1000 — Bruxelles,Apartment,,285000,1,79,1,1,0,0,,,,2,1,Good,20142697,"('Under option', 'No')"
8300 — Knokke-Heist,Apartment,,649000,2,71,0,1,0,3,,,,2,0,Good,20270324,No
6700 — Aarlen,Apartment,,190000,1,55,1,1,0,0,,,,2,1,Good,20220247,No
6700 — Aarlen,Apartment,,205000,1,60,1,1,0,0,,,,2,1,Good,20220246,No
2018 — ANTWERPEN,,Ground,295000,1,55,1,0,0,0,27,27,,2,0,Just renovated,20288073,"('Under option', 'No')"
8660 — De Panne,Apartment,,295000,2,88,1,0,0,0,,,,,0,Good,20285251,No
1040 — Etterbeek,,Penthouse,750000,2,229,1,0,1,20,,,,2,1,Good,20232667,No
1050 — Ixelles,Apartment,,850000,3,227,1,0,0,25,,,,3,1,Good,20268382,No
4020 — Liege,Apartment,,170000,3,72,1,1,0,35,,,,2,1,Good,20297569,No
4500 — HUY,,Duplex,225000,3,92,1,0,0,0,,,,,0,Good,20302496,No
1030 — Schaerbeek,Apartment,,349000,4,131,1,1,0,2,,,,2,1,Good,20297760,"('Under option', 'No')"
1200 — Woluwe-Saint-Lambert,Apartment,,349000,4,131,1,1,0,2,,,,2,1,Good,20297759,"('Under option', 'No')"
2660 — HOBOKEN,Apartment,,199000,2,82,1,0,0,2,,,,2,0,Good,20265224,"('Under option', 'No')"
1160 — Auderghem,Apartment,,725000,3,165,1,1,0,13,,,,2,1,To be done up,20167051,"('Under option', 'No')"
1800 — Vilvoorde,Apartment,,325000,2,90,1,1,0,0,,,,,0,Good,20280147,No
8620 — NIEUWPOORT,Apartment,,685000,2,100,1,0,0,19,,,,4,0,As new,20280762,"('Under option', 'No')"
1180 — Uccle,,Triplex,345000,2,83,1,1,0,0,,,,2,1,As new,20291734,No
1050 — Ixelles,Apartment,,495000,2,126,1,1,0,0,,,,2,1,Good,20291724,No
8300 — Knokke-Heist,Apartment,,1195000,2,78,1,1,0,4,,,,2,1,Just renovated,20292320,No
8370 — Blankenberge,,Flat,139000,1,37,0,0,0,0,,,,,0,As new,20306467,No
1180 — UCCLE,Apartment,,515000,3,135,1,0,1,35,,,,3,0,To renovate,20309715,No
9000 — Gent,Apartment,,999000,4,180,1,0,0,0,52,52,,2,0,As new,20308256,No
1200 — Woluwe-Saint-Lambert,,Penthouse,449000,2,110,1,1,0,100,,,,3,1,To be done up,20185840,"('Under option', 'No')"
1050 — Ixelles,,Flat,165000,1,17,1,1,0,0,,,,2,1,As new,20258373,No
8800 — ROESELARE,Apartment,,219000,1,72,1,0,0,18,,,,2,0,Good,20279375,No
1000 — Bruxelles,Apartment,,495000,2,109,1,1,0,1,,,,2,1,Good,20189681,No
1000 — Bruxelles,Apartment,,925000,3,207,1,1,0,1,,,,2,1,Good,20189683,No
1080 — Molenbeek,,Loft,192000,1,99,1,0,0,0,,,,2,1,Good,20310754,No
1200 — Woluwe-Saint-Lambert,Apartment,,170000,1,42,1,1,0,0,,,,2,1,Good,20299031,"('Under option', 'No')"
3920 — LOMMEL,,Duplex,316500,2,114,1,0,0,15,23,23,,2,0,,20298149,No
2500 — Lier,Apartment,,237000,1,73,1,0,0,0,,,,3,0,As new,20311756,No
1410 — Waterloo,Apartment,,485000,1,76,1,1,0,10,,,,3,1,Good,20311389,No
8300 — Knokke-Heist,Apartment,,699000,3,101,1,0,0,0,,,,2,1,As new,20313659,No
8620 — Nieuwpoort,Apartment,,199000,1,47,1,0,0,0,,,,,0,,20304634,No
9300 — Aalst (9300),Apartment,,199000,2,104,0,0,0,0,,,,,0,,20303195,No
8400 — OOSTENDE,Apartment,,249000,3,88,0,0,0,0,,,,2,0,Just renovated,20306126,No
9000 — Gent,Apartment,,275000,1,43,1,1,0,2,,,,,0,As new,20304460,No
2000 — Antwerpen,Apartment,,350000,2,116,1,1,0,4,,,,2,0,Good,20303456,No
8400 — Oostende,Apartment,,930000,8,301,1,1,0,0,,,,2,0,,20304621,No
1140 — Evere,Apartment,,389000,2,86,1,1,0,8,,,,2,1,As new,20243428,No
1190 — Vorst,,Duplex,537900,4,185,1,0,0,20,75,75,,,1,Good,20102470,No
8400 — Oostende,Apartment,,295000,2,78,1,1,0,6,,,,,0,As new,20267376,No
3000 — Leuven,Apartment,,415000,3,114,1,0,0,2,,,,,0,Good,20267354,No
2040 — Zandvliet,Apartment,,299999,2,85,1,1,0,0,,,,,0,Good,20282628,No
8300 — Knokke-Heist,,Duplex,1650000,4,173,1,1,0,40,,,,2,0,Good,20282650,No
9000 — GENT,Apartment,,197000,2,80,1,0,0,2,,,,2,0,,20294792,No
8400 — Oostende,Apartment,,695000,3,100,0,1,0,0,,,,,0,Good,20279556,No
2050 — ANTWERPEN,Apartment,,149000,1,47,1,0,0,0,,,,4,0,Good,20288992,No
4020 — Liège,Apartment,,155000,2,92,1,1,0,35,,,,2,1,Good,20287189,"('Under option', 'No')"
8800 — Roeselare,Apartment,,159000,3,123,1,0,0,0,,,,,0,To be done up,20285828,No
8660 — De Panne,,Service,199000,1,56,1,1,0,0,,,,,0,As new,20287601,No
1080 — Molenbeek-Saint-Jean,Apartment,,230000,2,92,1,0,0,3,,,,2,1,Good,20285971,No
1000 — Bruxelles,,Duplex,349000,2,95,0,1,0,0,,,,2,1,Good,20275626,No
8830 — Hooglede,Apartment,,479000,3,154,1,0,0,0,,,,,0,Good,20285824,No
1070 — Anderlecht,Apartment,,245000,1,64,1,1,0,0,,,,,1,As new,20291715,No
1190 — Forest,Apartment,,235000,1,85,1,1,0,4,,,,2,0,To be done up,20302505,No
2140 — BORGERHOUT,Apartment,,209000,2,88,1,0,0,8,,,,2,0,Good,20257881,No
8400 — Oostende,Apartment,,215000,1,50,1,1,0,6,,,,,0,Good,20275032,No
9140 — Temse,Apartment,,395000,2,90,1,1,0,0,,,,,0,,20318984,No
9050 — Gentbrugge,Apartment,,649000,3,129,1,0,0,0,280,280,,,0,As new,20275554,No
8400 — Oostende,Apartment,,225000,2,83,1,1,0,0,,,,2,1,Good,20309987,No
5000 — Namur,,Kot,117800,1,28,1,1,0,0,,,,2,1,As new,20228856,"('Under option', 'No')"
1932 — Zaventem Sint-Stevens-Woluwe,,Flat,145000,1,41,1,1,0,4,,,,4,1,As new,20279667,No
1020 — Laeken,,Ground,235000,1,71,1,1,0,15,100,100,,2,1,As new,20271140,"('Under option', 'No')"
1070 — Anderlecht,Apartment,,245000,2,70,1,1,0,3,,,,2,1,As new,20255317,No
1070 — Anderlecht,Apartment,,245000,2,87,1,0,0,3,100,100,,2,1,Good,20209202,No
1190 — Forest,Apartment,,259000,1,69,1,1,0,3,,,,2,1,Good,20195418,"('Under option', 'No')"
1000 — Bruxelles,Apartment,,277500,1,60,1,1,0,0,,,,,1,As new,20284176,No
1080 — Molenbeek-Saint-Jean,Apartment,,300000,2,85,1,1,0,25,,,,2,1,Good,20233538,No
,,,,0,0,0,0,,,,,0,,,,,
,,,,0,0,0,0,,,,,0,,,,,
1030 — Schaerbeek,,Triplex,545000,3,141,1,1,0,25,,,,2,1,As new,20236024,No
4020 — Liege,Apartment,,120000,1,53,1,1,0,35,,,,2,1,Good,20297765,No
4020 — Liege,Apartment,,140000,2,55,1,1,0,35,,,,2,1,Good,20297570,No
4340 — Awans,Apartment,,229000,1,60,1,1,0,27,,,,2,0,As new,20300910,No
2000 — Antwerpen,Apartment,,169000,1,40,1,1,0,0,,,,2,1,Good,20316079,No
8370 — Blankenberge,Apartment,,215000,2,77,1,1,0,6,,,,2,1,Good,20315256,No
8300 — Knokke,Apartment,,399000,1,40,0,0,0,0,,,,,0,Good,20314390,No
1070 — Anderlecht,,Ground,310000,3,120,1,1,0,27,35,35,,2,1,Good,20212870,"('Under option', 'No')"
1800 — Vilvoorde,,Duplex,265000,2,125,1,1,0,0,,,,,0,Good,20280146,No
9991 — Adegem,Apartment,,180000,1,85,0,0,0,0,,,,,0,Good,20292039,No
1050 — Ixelles,Apartment,,1450000,3,300,1,1,0,0,,,,2,1,Just renovated,20291720,No
9000 — Gent,Apartment,,229500,2,96,0,0,0,0,,,,,0,,20308615,No
1090 — Jette,Apartment,,499000,2,149,1,1,0,10,,,,2,0,Good,20308957,No
2018 — Antwerpen,Apartment,,585000,3,134,0,0,0,12,,,,3,1,As new,20308648,No
1180 — Uccle,Apartment,,675000,4,147,1,1,0,11,,,,2,1,Good,20184485,No
1060 — Saint-Gilles,Apartment,,765000,3,254,1,1,0,27,,,,,1,Good,20234144,No
9000 — Gent,,Service,445000,2,81,0,0,0,8,25,25,,,0,Good,20278649,No
8300 — Knokke,Apartment,,985000,2,70,0,1,0,0,,,,,0,Good,20278568,No
8300 — Knokke-Heist,Apartment,,1250000,2,75,1,1,0,0,,,,2,0,Just renovated,20278335,No
8300 — Knokke,Apartment,,2975000,3,131,0,0,0,0,,,,,0,As new,20276782,No
8300 — Knokke,Apartment,,3850000,4,187,0,1,0,0,,,,,0,Good,20276762,No
8300 — Knokke,Apartment,,4645000,3,123,0,0,0,0,,,,,0,As new,20276773,No
2850 — Boom,Apartment,,259000,2,91,0,1,0,85,,,,,0,,20297009,No
1300 — Wavre,Apartment,,299000,3,155,1,1,0,44,,,,2,1,To renovate,20295071,No
9770 — KRUISEM,Apartment,,335000,2,110,1,0,0,0,,,,2,0,Good,20299770,No
6700 — Arlon (Stockem),Apartment,,209000,2,65,1,0,0,0,413,413,,2,0,Good,20257814,"('Under option', 'No')"
9150 — Kruibeke Bazel,Apartment,,230000,2,82,1,1,0,8,,,,2,0,Good,20310572,No
1140 — Evere,Apartment,,348000,3,110,1,0,0,9,,,,2,0,Good,20310905,No
9000 — Gent,Apartment,,387500,2,83,1,1,0,0,,,,2,1,Good,20310772,No
1180 — Uccle,Apartment,,545000,2,123,0,1,0,25,,,,,1,As new,20262851,No
1050 — IXELLES,,Triplex,2150000,3,311,1,0,1,65,,,,2,0,Just renovated,20313976,No
9890 — Gavere,Apartment,,185000,2,55,0,1,0,25,,,,2,0,Good,20272902,No
3500 — Hasselt,Apartment,,299000,2,92,0,0,0,22,,,,,0,Good,20272725,No
6700 — ARLON,Apartment,,160000,1,55,1,0,0,0,,,,4,0,Good,20291797,No
1080 — Molenbeek-Saint-Jean,Apartment,,175000,1,71,1,1,0,0,,,,2,0,Good,20289607,No
1400 — NIVELLES,Apartment,,230000,3,150,1,0,0,0,,,,2,0,To be done up,20291885,No
1050 — Ixelles,Apartment,,295000,1,62,1,1,0,0,,,,3,1,Good,20289747,No
8000 — Brugge,,Service,115000,1,52,1,0,0,10,,,,2,1,As new,20304870,No
9600 — Ronse,Apartment,,179000,2,107,1,1,0,0,,,,2,1,Good,20306336,No
3000 — LEUVEN,,Flat,180000,1,29,1,0,0,0,,,,,0,Just renovated,20308854,No
9000 — Gent,Apartment,,455000,2,70,1,0,0,6,,,,,0,Just renovated,20303792,No
2660 — HOBOKEN,Apartment,,175000,3,90,1,0,0,5,,,,,0,Good,20180608,No
2100 — DEURNE,Apartment,,179000,2,72,1,1,0,5,,,,2,0,Good,20151618,"('Under option', 'No')"
2140 — BORGERHOUT,Apartment,,179000,2,72,1,1,0,5,,,,2,0,Good,20078303,"('Under option', 'No')"
2140 — BORGERHOUT,Apartment,,194900,2,75,1,0,0,3,,,,2,0,Good,20242596,"('Under option', 'No')"
2600 — BERCHEM,Apartment,,194900,2,75,1,0,0,3,,,,2,0,Good,20242595,"('Under option', 'No')"
2020 — ANTWERPEN,Apartment,,199000,2,104,1,0,0,2,,,,2,0,As new,20214720,No
1400 — NIVELLES,Apartment,,219000,3,100,1,1,0,11,,,,2,1,To be done up,20218830,No
2900 — SCHOTEN,Apartment,,225000,2,95,1,0,0,3,,,,,0,Good,20233362,"('Under option', 'No')"
2900 — SCHOTEN,,Penthouse,225000,2,95,1,0,0,3,,,,,0,Good,20233363,"('Under option', 'No')"
2600 — BERCHEM,Apartment,,240000,3,90,1,0,0,17,,,,,0,Good,20237612,No
1300 — WAVRE,Apartment,,245000,2,85,1,1,0,16,,,,4,1,To renovate,20048409,"('Under option', 'No')"
1301 — BIERGES,Apartment,,245000,2,85,1,1,0,16,,,,4,1,To renovate,20047478,"('Under option', 'No')"
1150 — Woluwe-Saint-Pierre,Apartment,,249000,1,77,1,0,0,0,7,7,,,1,Good,20053999,No
2660 — Hoboken,Apartment,,259000,2,95,0,0,0,9,,,,,0,As new,20204444,"('Under option', 'No')"
4000 — LIÈGE,Apartment,,268000,2,90,1,0,0,18,45,45,,2,0,Good,11368520,No
4000 — LIÈGE,Apartment,,275000,2,98,1,0,0,3,,,,2,0,Just renovated,11402961,No
2018 — ANTWERPEN,Apartment,,289000,2,80,1,1,0,0,,,,2,0,Good,20165955,No
2600 — BERCHEM,Apartment,,289000,2,86,1,0,0,11,,,,,0,Just renovated,20227281,"('Under option', 'No')"
2100 — DEURNE,Apartment,,295000,3,126,1,0,0,0,200,200,,,0,Good,20245601,"('Under option', 'No')"
2660 — HOBOKEN,Apartment,,296000,2,100,0,0,0,9,,,,2,0,As new,20071269,No
2600 — BERCHEM,Apartment,,319000,2,105,1,0,0,23,,,,,0,Good,20127974,"('Under option', 'No')"
1150 — Woluwe-Saint-Pierre,Apartment,,398000,2,90,1,0,1,4,,,,2,1,Good,20279794,No
2600 — BERCHEM,Apartment,,415000,2,114,1,0,0,14,,,,2,0,Just renovated,11265699,"('Under option', 'No')"
2600 — BERCHEM,Apartment,,419000,3,145,1,0,1,20,,,,,0,Good,20221373,No
1820 — STEENOKKERZEEL,Apartment,,429000,3,123,1,0,0,18,,,,2,0,Good,20050372,No
1000 — Bruxelles,Apartment,,550000,2,167,1,1,0,12,60,60,,2,1,Good,20133689,"('Under option', 'No')"
3920 — Lommel,Apartment,,569000,3,143,1,0,0,30,,,,2,0,As new,20194759,No
8301 — Heist-aan-Zee,Apartment,,645000,2,91,1,1,0,11,,,,2,0,Good,20046743,No
8300 — Knokke,Apartment,,985000,2,70,1,1,0,50,,,,2,0,Just renovated,11040240,No
8300 — Knokke,Apartment,,1195000,3,105,1,1,0,4,,,,2,0,Just renovated,11028615,No
2940 — Stabroek,Apartment,,215000,2,94,1,0,0,0,,,,,0,Good,20267403,No
8400 — Oostende,Apartment,,234000,2,70,1,1,0,2,,,,,0,Good,11427787,No
8450 — BREDENE,,Penthouse,319000,2,101,1,0,0,5,,,,2,0,Good,20270127,No
3000 — Leuven,Apartment,,425000,2,112,1,1,0,0,,,,,0,Good,20267586,No
1150 — Woluwe-Saint-Pierre,Apartment,,655000,3,170,1,1,0,22,,,,2,1,Good,20044380,No
4400 — FLÉMALLE-GRANDE,Apartment,,230000,2,220,1,0,0,16,,,,2,0,To restore,20284077,No
1200 — Woluwe-Saint-Lambert,,Ground,547000,2,152,1,1,0,13,33,33,,2,1,As new,20268445,No
8300 — Knokke-Zoute,Apartment,,3495000,3,200,1,1,0,0,,,,2,0,Good,20282297,No
8300 — Knokke-Zoute,Apartment,,3950000,2,100,1,1,0,0,,,,2,0,Good,20282554,No
6940 — Durbuy,,Ground,99000,2,87,1,1,0,0,,,,2,0,To be done up,20294655,No
3640 — KINROOI,,Ground,263000,2,106,1,0,0,24,42,42,,,0,,20296258,No
3640 — KINROOI,,Ground,284000,2,116,1,0,0,14,15,15,,,0,,20296265,No
2018 — Antwerpen,Apartment,,349000,2,112,1,0,0,0,,,,2,0,Good,20296853,No
8800 — Roeselare,,Flat,135000,1,44,1,1,0,0,,,,,0,Good,20285817,No
2000 — ANTWERPEN,Apartment,,209000,1,54,1,0,0,0,,,,2,0,Good,20290247,No
8800 — Roeselare,Apartment,,229000,2,90,1,0,0,0,,,,,0,Good,20285820,No
8670 — Sint-Idesbald,Apartment,,249000,3,106,1,0,0,0,,,,,0,To renovate,20287600,No
2900 — SCHOTEN,Apartment,,300000,2,90,1,0,0,0,,,,,0,Good,20289876,No
1050 — Ixelles,Apartment,,390000,2,85,1,1,0,2,,,,2,1,Good,20286370,No