File size: 44,023 Bytes
3ae53b9 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 | [
{
"adId": "610059905",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3282503vrg-portuense-roma-647060277.htm",
"title": "Appartamento Roma [Cod. rif 3282503VRG] (Portuense",
"shortDescription": "GabettiBalduina Via Gerolamo Cardano in prossimità di Via Oderisi da Gubbio in un comprensorio di più palazzine luminoso 3° piano composto da ingresso, cucina abitabile, ampio soggiorno, grande camera da letto, ripostiglio, bagno e balcone € 250.000,00 - GABETTI Agenzia Balduina - ###phonenumber### - ###phonenumber### - Peculiarità: Impianto riscaldamento centralizzato a consumo, soggiorno e camera da letto climatizzate, portone d'ingresso blindato, affacci silenziosi nel comprensorio. La zona è ben servita e ottimamente collegata. L'immobile si trova nel tratto più servito di Via Cardano, fro",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": null,
"priceCurrency": "EUR",
"pricePerSqm": null,
"areaSqm": 70,
"terrainAreaSqm": null,
"rooms": null,
"roomsLabel": null,
"bathrooms": null,
"floor": null,
"totalFloors": null,
"buildingType": null,
"heatingType": "Altro",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.8625423,
"longitude": 12.4647108,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Balduina",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:29",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059863",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3316377vrg-roma-647060170.htm",
"title": "Appartamento Roma [Cod. rif 3316377VRG]",
"shortDescription": "Appartamento - Roma (RM) -",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 189000,
"priceCurrency": "EUR",
"pricePerSqm": 1890,
"areaSqm": 100,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 2,
"floor": "1",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "F",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.7927401,
"longitude": 12.3570792,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Acilia",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:23",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059740",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3316554vrg-roma-647059880.htm",
"title": "Appartamento Roma [Cod. rif 3316554VRG]",
"shortDescription": "NUDA PROPRIETÀ - Monteverde, Via Fabiola, 3° piano, finemente ristrutturato. In una delle zone più richieste e residenziali di Roma, GABETTI FRANCHISING propone in vendita la NUDA PROPRIETA' di un elegante trilocale di 91 mq con balcone, situato al 3° piano (affaccio come un 5°) di una palazzina in ottimo stato di manutenzione. L'appartamento è composto da: ampio ingresso, luminoso salone con accesso al balcone, cucina abitabile anch'essa con uscita sul balcone, due camere matrimoniali e bagno finestrato. La casa gode di una doppia esposizione (principale Sud/Ovest) che garantisce ottima lumin",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 249000,
"priceCurrency": "EUR",
"pricePerSqm": 2677,
"areaSqm": 93,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 1,
"floor": "3",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Altro",
"yearBuilt": null,
"energyClass": "F",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.8765028,
"longitude": 12.4502084,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Torrevecchia Gemelli",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:07",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059725",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3316559vrg-roma-647059829.htm",
"title": "Appartamento Roma [Cod. rif 3316559VRG]",
"shortDescription": "Gabetti Torrevecchia-Gemelli propone in esclusiva un Trilocale di circa 67 mq, posto al primo piano di una palazzina in cortina con ascensore, in contesto tranquillo e ben servito, a pochi passi dal Policlinico Gemelli e dall'Università Cattolica. L'immobile si presenta in ottime condizioni, è composto da: ingresso, cucina in muratura a vista, ampio salone con accesso sul primo balcone, disimpegno , studio adibito a cameretta con accesso sul secondo balcone, camera matrimoniale e un bagno recentemente ristrutturato. Presenti pavimenti in parquet e due comodi soppalchi. Ottima esposizione verso",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 248000,
"priceCurrency": "EUR",
"pricePerSqm": 3493,
"areaSqm": 71,
"terrainAreaSqm": null,
"rooms": 1,
"roomsLabel": "1",
"bathrooms": 1,
"floor": "1",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "G",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9278986,
"longitude": 12.4145777,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Torrevecchia Gemelli",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:05",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059728",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3316592vrg-roma-647059837.htm",
"title": "Appartamento Roma [Cod. rif 3316592VRG]",
"shortDescription": "PRENESTINA / VILLA GORDIANI. Via Bellegra. Con una superficie di 92 mq, questo luminoso immobile offre due camere da letto, un ampio salone, una cucina e un bagno. Il balcone e il terrazzo offrono spazi all'aperto per godersi il clima mediterraneo. Situato al quarto piano con ascensore, l'appartamento si trova in ottime condizioni interne, pronto per essere abitato. La zona circostante offre una vasta gamma di servizi, tra cui trasporti pubblici, bar, ristoranti, farmacie e molto altro. Non lasciarti sfuggire questa opportunità di vivere nel cuore di Roma in un ambiente confortevole e accoglie",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 319000,
"priceCurrency": "EUR",
"pricePerSqm": 3467,
"areaSqm": 92,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 1,
"floor": "4",
"totalFloors": null,
"buildingType": "Ottimo - ristrutturato",
"heatingType": "Altro",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.8932408,
"longitude": 12.5568789,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Prenestina Villa Gordiani",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:04",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059717",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3316596vrg-roma-647059819.htm",
"title": "Appartamento Roma [Cod. rif 3316596VRG]",
"shortDescription": "Gabetti Centocelle propone, nelle immediate vicinanze di via dei Castani e più precisamente in via dei Gelsi, proponiamo in vendita un accogliente monolocale di 38 mq, ideale per chi desidera vivere in una zona ben servita dai mezzi pubblici e da tutti i comfort necessari.",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 125000,
"priceCurrency": "EUR",
"pricePerSqm": 3289,
"areaSqm": 38,
"terrainAreaSqm": null,
"rooms": 1,
"roomsLabel": "1",
"bathrooms": 1,
"floor": null,
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "G",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.888854,
"longitude": 12.566199,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Centocelle Prenestina",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:04",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610059699",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-roma-cod-rif-3313594vrg-nomentano-roma-647059752.htm",
"title": "Appartamento Roma [Cod. rif 3313594VRG] (Nomentano",
"shortDescription": "GabettiBalduina Via Nomentana Nuova fronte parco nomentano ed in prossimità di Piazza Sempione appartamento composto da soggiorno con angolo cottura disimpegno con soppalco 2 camere di cui una con cabina armadio bagno con doccia ed ampia cantina con finestra €195.000,00 - GABETTI Agenzia BALDUINA - CAMILLUCCIA ###phonenumber### - ###phonenumber### Alcune delle principali peculiarità: affaccio da piano rialzato, finestre in alluminio con doppio cristallo, inferriate a tutte le finestre, porta di ingresso blindata, impianto di riscaldamento centralizzato a consumo, edificio dotato di monitoraggi",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 195000,
"priceCurrency": "EUR",
"pricePerSqm": 3545,
"areaSqm": 55,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 1,
"floor": "Seminterrato",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Centralizzato",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9347876,
"longitude": 12.5318366,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Roma Balduina",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 14:09:00",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "609885279",
"detailUrl": "https://www.subito.it/appartamenti/casa-moderna-roma-646148209.htm",
"title": "Casa moderna",
"shortDescription": "Appartamento esposto a sud e con vista, in palazzina C di recente costruzione con certificato di abitabilità, in complesso residenziale, località laghetto di montecompatri vicino a tanti servizi, con accesso da cancello condominiale sulla Casilina. Secondo piano di 50 mq, salotto cucina e bagno nuovo, oltre terrazzo di 30 mq. Mansarda collegata di 80 mq, due camere di cui una grande e una con pendenza (200cm-80 cm) e un bagno completamente nuovo. Spese condominiali 50 euro/mese, termoautonomo con caldaia a pellet di ultima generazione per riscaldamento. Predisposizione interna muri per condizi",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 196000,
"priceCurrency": "EUR",
"pricePerSqm": 2178,
"areaSqm": 90,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 2,
"floor": "2",
"totalFloors": null,
"buildingType": "Nuova costruzione",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "A",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Monte Compatri",
"microLocation": null,
"street": null,
"fullAddress": "Monte Compatri, RM, Lazio, Italia",
"latitude": 41.848286,
"longitude": 12.7372911,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "gianluca",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 13:24:27",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "608412348",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-ristrutturato-mai-abitato-roma-637873268.htm",
"title": "Appartamento ristrutturato mai abitato",
"shortDescription": "Completamente ristrutturato entrata indipendente terrazzo a livello 40 metri, piano terra open space 45 metri con bagno completo e cucina nuova mai usata, piano sottostante open space 50 metri con bagno completo, aria condizionata doppia e riscaldamento autonomo vendesi per cambio esigenze, assolutamente no agenzie",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 240000,
"priceCurrency": "EUR",
"pricePerSqm": 2667,
"areaSqm": 90,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 2,
"floor": "0",
"totalFloors": null,
"buildingType": "Ottimo - ristrutturato",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "E",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": null,
"longitude": null,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Luigi",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 12:54:52",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "610056715",
"detailUrl": "https://www.subito.it/appartamenti/balduina-via-seneca-roma-647046664.htm",
"title": "Balduina - Via Seneca",
"shortDescription": "**Bilocale Ristrutturato in Vendita a Balduina** Scopri questo affascinante bilocale di 40 mq situato nel cuore del quartiere Balduina, precisamente in Via Seneca. Questo immobile, accatastato come negozio C/1 (perfetto candidato per essere riportato ad A/2 abitazione civile), si trova al piano seminterrato di un edificio in tinta in ottimo stato. Completamente ristrutturato e pronto per essere abitato, offre un soggiorno luminoso con angolo cottura, una camera da letto accogliente e un bagno moderno con box doccia. Le spese condominiali sono contenute, solo € 30,00 mensili, mentre il riscalda",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": "agency",
"price": 130000,
"priceCurrency": "EUR",
"pricePerSqm": 3250,
"areaSqm": 40,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 1,
"floor": "No",
"totalFloors": null,
"buildingType": "Ottimo - ristrutturato",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "G",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9213117,
"longitude": 12.4441629,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Professionecasa Roma Balduina",
"advertiserUrl": null,
"advertiserType": "agency",
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 12:24:50",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.922Z"
},
{
"adId": "605732961",
"detailUrl": "https://www.subito.it/appartamenti/vendita-appartamento-villa-bonelli-roma-roma-626456151.htm",
"title": "Vendita appartamento Villa Bonelli - Roma",
"shortDescription": "PRIVATO VENDE con tutti gli arredi nella descrizione appartamento di 76 mq in stabile con portiere a Villa Bonelli (via Pietro Venturi). L'appartamento si trova al piano terra ed è luminosissimo. Internamente è finemente ristrutturato, con parquet recentemente lamato anche in bagno e cucina. L'appartamento è composto da un grande soggiorno di circa 35 mq, una cucina a vista, già predisposta per essere eventualmente chiusa, completamente attrezzata e con gli elettrodomestici nuovi, una camera da letto con grande vano soppalco ad uso ripostiglio, un'intera stanza cabina armadio dotata di cassett",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 280000,
"priceCurrency": "EUR",
"pricePerSqm": 3684,
"areaSqm": 76,
"terrainAreaSqm": null,
"rooms": 1,
"roomsLabel": "1",
"bathrooms": 1,
"floor": "No",
"totalFloors": null,
"buildingType": "Ottimo - ristrutturato",
"heatingType": "Centralizzato",
"yearBuilt": null,
"energyClass": "C",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": null,
"longitude": null,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Silvia",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 12:11:52",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610054064",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-arredato-zona-verde-portierato-roma-647035960.htm",
"title": "Appartamento arredato zona verde portierato",
"shortDescription": "Disponibile da subito Con una superficie commerciale di 65 m², la casa offre un ampio ingresso che conduce a un luminoso soggiorno a vista, perfetto per momenti di relax. La cucina abitabile è ideale per chi ama la cucina separata da altri ambienti. Il bagno grande con vasca, mentre la comoda camera matrimoniale offre uno spazio accogliente per il riposo. Il balcone, con affaccio su un tranquillo cortile e una zona verde. L'appartamento è venduto arredato, poco distante dal centro città, la posizione è perfetta per chi desidera vivere vicino a tutte le comodità urbane. Completa l'offerta un po",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 139000,
"priceCurrency": "EUR",
"pricePerSqm": 2138,
"areaSqm": 65,
"terrainAreaSqm": null,
"rooms": 1,
"roomsLabel": "1",
"bathrooms": 1,
"floor": "2",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "B",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Pomezia",
"microLocation": null,
"street": null,
"fullAddress": "Pomezia, RM, Lazio, Italia",
"latitude": null,
"longitude": null,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "alessandra",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 11:11:10",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610051065",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-98-m²-con-3-locali-a-roma-roma-647026684.htm",
"title": "Appartamento di 98 m² con 3 locali a Roma",
"shortDescription": "Centro Storico, Monti, adiacente Piazza San Martino ai Monti in palazzina della metà inizi del 1800, proponiamo un assolato secondo piano, con doppia esposizione, composto da salone, due camere, cucina, bagno (con possibilità di poter realizzare facilmente il secondo), ripostiglio. L'appartamento, in discreto stato di conservazione, ha infissi in legno con doppio vetro e pavimenti in laminato; recentemente sono stati rifatti il bagno e la cucina ed ha un portoncino blindato con cilindro europeo e chiave di sicurezza. La casa ha una logica distribuzione degli ambienti, una eccezionale luminosit",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 680000,
"priceCurrency": "EUR",
"pricePerSqm": 6939,
"areaSqm": 98,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 1,
"floor": "2",
"totalFloors": null,
"buildingType": null,
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "F",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.8946,
"longitude": 12.4957,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "RockAgent",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:52:32",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610053466",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-via-pellegrino-matteucci-roma-647033827.htm",
"title": "Appartamento Via Pellegrino Matteucci",
"shortDescription": "Vendesi appartamento via Pellegrino Matteucci - 6° ed ultimo piano con ascensore - Arredato - In ottimo stato - 3 Camere + cucina abitabile + bagno - 85 Mq Su richiesta posso fornire altre foto. Prezzo NON trattabile.",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 345000,
"priceCurrency": "EUR",
"pricePerSqm": 4059,
"areaSqm": 85,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 1,
"floor": "Sì",
"totalFloors": null,
"buildingType": "Buono - abitabile",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.87140114700843,
"longitude": 12.484108952392559,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Giorgia",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:52:24",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "609854109",
"detailUrl": "https://www.subito.it/appartamenti/attico-ristrutturato-anzio-lavinio-mare-roma-645986958.htm",
"title": "Attico ristrutturato (Anzio) Lavinio mare",
"shortDescription": "Privato vende attico ristrutturato a Lavinio Mare, in posizione comoda e vicina a tutti i principali servizi a soli 450 metri dal mare. composto da: * ingresso con ampio e luminoso salone * cucina molto spaziosa * due camere da letto, di cui una molto grande con camino e balcone * due bagni * due balconi Completa la proprietà uno splendido terrazzo sovrastante di 100 mq, con vista panoramica e scorcio sul mare. Nessuna spesa condominiale. La palazzina è composta da sole due unità abitative, caratteristica che garantisce massima privacy e tranquillità.",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 169000,
"priceCurrency": "EUR",
"pricePerSqm": 1690,
"areaSqm": 100,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 2,
"floor": "2",
"totalFloors": null,
"buildingType": "Ottimo - ristrutturato",
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Anzio",
"microLocation": null,
"street": null,
"fullAddress": "Anzio, RM, Lazio, Italia",
"latitude": null,
"longitude": null,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Marianna",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:50:41",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610052103",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-53-m²-con-2-locali-a-roma-roma-647028765.htm",
"title": "Appartamento di 53 m² con 2 locali a Roma",
"shortDescription": "L'Agenzia immobiliari Dominvest propone in vendita un appartamento finemente ristrutturato ed arredato nel quartiere San Lorenzo e precisamente in Via dei Sabelli. L'appartamento è posto al primo piano di uno stabile d'epoca dotato di ascensore. Internamente si compone di: ingresso, soggiorno-pranzo, camera da letto, bagno e cucina. L'immobile è dotato di soffitti alti 3.50 metri con splendide voltine in mattoni illuminate da luci a led poste nelle cornici in stucco; i pavimenti sono in parquet di gres, aria condizionata in tutti gli ambienti, ampio soppalco con accesso dal bagno, porte scorre",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 260000,
"priceCurrency": "EUR",
"pricePerSqm": 4906,
"areaSqm": 53,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 1,
"floor": "1",
"totalFloors": null,
"buildingType": null,
"heatingType": "Centralizzato",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.8966,
"longitude": 12.5148,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Dominvest",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:21:06",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610052105",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-60-m²-con-2-locali-a-roma-roma-647028772.htm",
"title": "Appartamento di 60 m² con 2 locali a Roma",
"shortDescription": "L'agenzia immobiliare Dominvest propone in vendita un appartamento posto al primo piano di una palazzina recentemente ristrutturata a pochi passi dalla stazione ferroviaria La Celsa (Labaro) e più precisamente in Via Gargaglia (Via Frassineto). L'immobile vanta un ingresso indipendente con cancello privato che conduce a un cortile parzialmente coperto di proprietà esclusiva, dove è possibile parcheggiare un'auto. Attraverso una scala si accede a un terrazzo coperto da una tettoia in legno e dotato di cucinino esterno. L'appartamento internamente si compone di un ampio salone, una cucina con fi",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 160000,
"priceCurrency": "EUR",
"pricePerSqm": 2667,
"areaSqm": 60,
"terrainAreaSqm": null,
"rooms": 2,
"roomsLabel": "2",
"bathrooms": 1,
"floor": "1",
"totalFloors": null,
"buildingType": null,
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9988,
"longitude": 12.4907,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Dominvest",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:21:06",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610051999",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-82-m²-con-3-locali-a-roma-roma-647028512.htm",
"title": "Appartamento di 82 m² con 3 locali a Roma",
"shortDescription": "BALDUINA: in viale delle Medaglie d'Oro, proponiamo la vendita di un esclusivo appartamento ristrutturato con materiali di pregio. Internamente, risulta così composto: INGRESSO - SALONE DOPPIO - CUCINA - CAMERA PADRONALE CON BAGNO EN SUITE E CABINA ARMADIO - CAMERETTA - BAGNO - RIPOSTIGLIO - BALCONE L'immobile si trova al primo piano di uno stabile in ottime condizioni, dotato di ascensore. Gode di una tripla esposizione, gli affacci sono gradevoli e per questo risulta luminoso e silenzioso. Risulta completamente ristrutturato e rifinito con materiali di pregio ed è pronto per essere abitato. ",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 649000,
"priceCurrency": "EUR",
"pricePerSqm": 7915,
"areaSqm": 82,
"terrainAreaSqm": null,
"rooms": 3,
"roomsLabel": "3",
"bathrooms": 2,
"floor": "1",
"totalFloors": null,
"buildingType": null,
"heatingType": "Centralizzato",
"yearBuilt": null,
"energyClass": "E",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9228,
"longitude": 12.4458,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "RockAgent",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:20:55",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610051972",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-60-m²-con-4-locali-a-guidonia-mont-roma-647028461.htm",
"title": "Appartamento di 60 m² con 4 locali a Guidonia Mont",
"shortDescription": "Proposto in esclusiva da RockAgent All'interno del prestigioso Marco Simone Golf Club, teatro della celebre Ryder Cup, nel complesso Carpediem proponiamo in vendita un elegante appartamento su due livelli con affaccio diretto sul campo da golf, immerso nel verde e nella tranquillità. L'immobile, completamente arredato con gusto e pronto da abitare, si sviluppa su due piani: Primo piano: luminoso soggiorno con angolo cottura, una camera matrimoniale, bagno finestrato e un balcone con vista panoramica sul campo da golf. Piano mansardato: due ampie camere, spazioso disimpegno e bagno con vasca id",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 199000,
"priceCurrency": "EUR",
"pricePerSqm": 3317,
"areaSqm": 60,
"terrainAreaSqm": null,
"rooms": 4,
"roomsLabel": "4",
"bathrooms": 2,
"floor": "1",
"totalFloors": null,
"buildingType": null,
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": "G",
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Guidonia Montecelio",
"microLocation": null,
"street": null,
"fullAddress": "Guidonia Montecelio, RM, Lazio, Italia",
"latitude": 41.9592,
"longitude": 12.6384,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "RockAgent",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:20:52",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
},
{
"adId": "610051964",
"detailUrl": "https://www.subito.it/appartamenti/appartamento-di-54-m²-con-2-locali-a-roma-roma-647028449.htm",
"title": "Appartamento di 54 m² con 2 locali a Roma",
"shortDescription": "L'agenzia immobiliare Dominvest propone in vendita un bilocale situato in Via Foglia, in uno dei contesti più ricercati e serviti della Capitale, a breve distanza da Villa Ada e dai principali poli universitari. L'immobile internamente si compone di: soggiorno, camera, bagno e balcone. Completa la proprietà una comoda cantina di pertinenza. L'appartamento è completamente da ristrutturare, rappresentando una soluzione ideale per chi desidera personalizzare gli spazi interni o ottimizzare la disposizione degli ambienti. L'immobile è dotato di: riscaldamento autonomo con caldaia a gas, impianto d",
"transactionType": "sale",
"propertyType": "apartment",
"advertType": null,
"price": 280000,
"priceCurrency": "EUR",
"pricePerSqm": 5185,
"areaSqm": 54,
"terrainAreaSqm": null,
"rooms": 1,
"roomsLabel": "1",
"bathrooms": 1,
"floor": null,
"totalFloors": null,
"buildingType": null,
"heatingType": "Autonomo",
"yearBuilt": null,
"energyClass": null,
"country": "Italia",
"region": "Lazio",
"province": "Roma",
"provinceCode": "RM",
"city": "Roma",
"microLocation": null,
"street": null,
"fullAddress": "Roma, RM, Lazio, Italia",
"latitude": 41.9288,
"longitude": 12.5145,
"mainImageUrl": null,
"imageUrls": null,
"imageCount": 0,
"advertiserId": null,
"advertiserName": "Dominvest",
"advertiserUrl": null,
"advertiserType": null,
"hasElevator": null,
"hasParking": null,
"hasGarage": null,
"hasTerrace": null,
"hasBalcony": null,
"isFurnished": null,
"isFeatured": null,
"isUrgent": null,
"datePosted": "2026-05-14 10:20:51",
"labels": null,
"searchTransaction": "sale",
"searchPropertyType": "apartment",
"searchRegion": "lazio",
"searchProvince": "roma",
"searchCity": null,
"searchKeyword": null,
"searchUrl": "https://www.subito.it/annunci-lazio/vendita/appartamenti/roma/",
"scrapedAt": "2026-05-14T12:15:39.923Z"
}
] |