-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotpads.com.html
4488 lines (4461 loc) · 474 KB
/
hotpads.com.html
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
<!DOCTYPE html>
<html lang="en" data-triggered="true">
<head>
<!-- https://hotpads.com/san-francisco-ca/apartments-for-rent?price=800-2400 -->
<meta name="generator" content=
"HTML Tidy for HTML5 for Apple macOS version 5.8.0">
<meta charset="UTF-8">
<style>
.gm-style .transit-container{background-color:white;max-width:265px;overflow-x:hidden}.gm-style .transit-container .transit-title span{font-size:14px;font-weight:500}.gm-style .transit-container .transit-title{padding-bottom:6px}.gm-style .transit-container .transit-wheelchair-icon{background:transparent url('https://maps.gstatic.com/mapfiles/api-3/images/mapcnt6.png');background-size:59px 492px;display:inline-block;background-position:-5px -450px;width:13px;height:13px}.gm-style.gm-china .transit-container .transit-wheelchair-icon{background-image:url('http://maps.gstatic.cn/mapfiles/api-3/images/mapcnt6.png')}@media (-webkit-min-device-pixel-ratio:1.2),(min-resolution:1.2dppx),(min-resolution:116dpi){.gm-style .transit-container .transit-wheelchair-icon{background-image:url('https://maps.gstatic.com/mapfiles/api-3/images/mapcnt6_hdpi.png');background-size:59px 492px;display:inline-block;background-position:-5px -449px;width:13px;height:13px}.gm-style.gm-china .transit-container .transit-wheelchair-icon{background-image:url('http://maps.gstatic.cn/mapfiles/api-3/images/mapcnt6_hdpi.png')}}.gm-style .transit-container div{background-color:white;font-size:11px;font-weight:300;line-height:15px}.gm-style .transit-container .transit-line-group{overflow:hidden;margin-right:-6px}.gm-style .transit-container .transit-line-group-separator{border-top:1px solid #e6e6e6;padding-top:5px}.gm-style .transit-container .transit-nlines-more-msg{color:#999;margin-top:-3px;padding-bottom:6px}.gm-style .transit-container .transit-line-group-vehicle-icons{display:inline-block;padding-right:10px;vertical-align:top;margin-top:1px}.gm-style .transit-container .transit-line-group-content{display:inline-block;min-width:100px;max-width:228px;margin-bottom:-3px}.gm-style .transit-container .transit-clear-lines{clear:both}.gm-style .transit-container .transit-div-line-name{float:left;padding:0 6px 6px 0;white-space:nowrap}.gm-style .transit-container .transit-div-line-name .gm-transit-long{width:107px}.gm-style .transit-container .transit-div-line-name .gm-transit-medium{width:50px}.gm-style .transit-container .transit-div-line-name .gm-transit-short{width:37px}.gm-style .transit-div-line-name .renderable-component-icon{float:left;margin-right:2px}.gm-style .transit-div-line-name .renderable-component-color-box{background-image:url(https://maps.gstatic.com/mapfiles/transparent.png);height:10px;width:4px;float:left;margin-top:3px;margin-right:3px;margin-left:1px}.gm-style.gm-china .transit-div-line-name .renderable-component-color-box{background-image:url(http://maps.gstatic.cn/mapfiles/transparent.png)}.gm-style .transit-div-line-name .renderable-component-text{text-align:left;overflow:hidden;text-overflow:ellipsis;display:block}.gm-style .transit-div-line-name .renderable-component-text-box{overflow:hidden;text-overflow:ellipsis;display:block;font-size:8pt;font-weight:400;text-align:center;padding:1px 2px}.gm-style .transit-div-line-name .renderable-component-text-box-white{border:solid 1px #ccc;background-color:white;padding:0 2px}.gm-style .transit-div-line-name .renderable-component-bold{font-weight:400}
</style>
<style>
.poi-info-window div,.poi-info-window a{color:#333;font-family:Roboto,Arial;font-size:13px;background-color:white;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text}.poi-info-window{cursor:default}.poi-info-window a:link{text-decoration:none;color:#427fed}.poi-info-window .view-link,.poi-info-window a:visited{color:#427fed}.poi-info-window .view-link:hover,.poi-info-window a:hover{cursor:pointer;text-decoration:underline}.poi-info-window .full-width{width:180px}.poi-info-window .title{overflow:hidden;font-weight:500;font-size:14px}.poi-info-window .address{margin-top:2px;color:#555}
</style>
<style>
.gm-style .gm-style-iw{font-weight:300;font-size:13px;overflow:hidden}.gm-style .gm-style-iw-a{position:absolute;width:9999px;height:0}.gm-style .gm-style-iw-t{position:absolute;width:100%}.gm-style .gm-style-iw-t::after{background:linear-gradient(45deg,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 51%,rgba(255,255,255,0) 100%);box-shadow:-2px 2px 2px 0 rgba(178,178,178,.4);content:"";height:15px;left:0;position:absolute;top:0;transform:translate(-50%,-50%) rotate(-45deg);width:15px}.gm-style .gm-style-iw-c{position:absolute;box-sizing:border-box;overflow:hidden;top:0;left:0;transform:translate3d(-50%,-100%,0);background-color:white;border-radius:8px;padding:12px;box-shadow:0 2px 7px 1px rgba(0,0,0,0.3)}.gm-style .gm-style-iw-d{box-sizing:border-box;overflow:auto}.gm-style .gm-style-iw-d::-webkit-scrollbar{width:18px;height:12px;-webkit-appearance:none}.gm-style .gm-style-iw-d::-webkit-scrollbar-track,.gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece{background:#fff}.gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.12);border:6px solid transparent;border-radius:9px;background-clip:content-box}.gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-thumb:horizontal{border:3px solid transparent}.gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,0.3)}.gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-corner{background:transparent}.gm-style .gm-iw{color:#2c2c2c}.gm-style .gm-iw b{font-weight:400}.gm-style .gm-iw a:link,.gm-style .gm-iw a:visited{color:#4272db;text-decoration:none}.gm-style .gm-iw a:hover{color:#4272db;text-decoration:underline}.gm-style .gm-iw .gm-title{font-weight:400;margin-bottom:1px}.gm-style .gm-iw .gm-basicinfo{line-height:18px;padding-bottom:12px}.gm-style .gm-iw .gm-website{padding-top:6px}.gm-style .gm-iw .gm-photos{padding-bottom:8px;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.gm-style .gm-iw .gm-sv,.gm-style .gm-iw .gm-ph{cursor:pointer;height:50px;width:100px;position:relative;overflow:hidden}.gm-style .gm-iw .gm-sv{padding-right:4px}.gm-style .gm-iw .gm-wsv{cursor:pointer;position:relative;overflow:hidden}.gm-style .gm-iw .gm-sv-label,.gm-style .gm-iw .gm-ph-label{cursor:pointer;position:absolute;bottom:6px;color:#fff;font-weight:400;text-shadow:rgba(0,0,0,0.7) 0 1px 4px;font-size:12px}.gm-style .gm-iw .gm-stars-b,.gm-style .gm-iw .gm-stars-f{height:13px;font-size:0}.gm-style .gm-iw .gm-stars-b{position:relative;background-position:0 0;width:65px;top:3px;margin:0 5px}.gm-style .gm-iw .gm-rev{line-height:20px;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.gm-style.gm-china .gm-iw .gm-rev{display:none}.gm-style .gm-iw .gm-numeric-rev{font-size:16px;color:#dd4b39;font-weight:400}.gm-style .gm-iw.gm-transit{margin-left:15px}.gm-style .gm-iw.gm-transit td{vertical-align:top}.gm-style .gm-iw.gm-transit .gm-time{white-space:nowrap;color:#676767;font-weight:bold}.gm-style .gm-iw.gm-transit img{width:15px;height:15px;margin:1px 5px 0 -20px;float:left}
</style>
<style>
.gm-iw {text-align:left;}.gm-iw .gm-numeric-rev {float:left;}.gm-iw .gm-photos,.gm-iw .gm-rev {direction:ltr;}.gm-iw .gm-stars-f, .gm-iw .gm-stars-b {background:url("https://maps.gstatic.com/mapfiles/api-3/images/review_stars_hdpi.png") no-repeat;background-size: 65px 26px;float:left;}.gm-iw .gm-stars-f {background-position:left -13px;}.gm-iw .gm-sv-label,.gm-iw .gm-ph-label {left: 4px;}
</style>
<style>
.gm-control-active>img{box-sizing:content-box;display:none;left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%)}.gm-control-active>img:nth-child(1){display:block}.gm-control-active:hover>img:nth-child(1),.gm-control-active:active>img:nth-child(1){display:none}.gm-control-active:hover>img:nth-child(2),.gm-control-active:active>img:nth-child(3){display:block}
</style>
<link type="text/css" rel="stylesheet" href=
"https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Google+Sans:400,500,700|Google+Sans+Text:400">
<link type="text/css" rel="stylesheet" href=
"https://fonts.googleapis.com/css?family=Google+Sans+Text:400&text=%E2%86%90%E2%86%92%E2%86%91%E2%86%93">
<style>
.gm-ui-hover-effect{opacity:.6}.gm-ui-hover-effect:hover{opacity:1}
</style>
<style>
.gm-style .gm-style-cc a,.gm-style .gm-style-cc button,.gm-style .gm-style-cc span,.gm-style .gm-style-mtc div{font-size:10px;box-sizing:border-box}
</style>
<style>
@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}
</style>
<style>
.gm-style-moc{background-color:rgba(0,0,0,0.45);pointer-events:none;text-align:center;transition:opacity ease-in-out}.gm-style-mot{color:white;font-family:Roboto,Arial,sans-serif;font-size:22px;margin:0;position:relative;top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}
</style>
<style>
.gm-style img{max-width: none;}.gm-style {font: 400 11px Roboto, Arial, sans-serif; text-decoration: none;}
</style>
<meta content=
"width=device-width, initial-scale=1.0, maximum-scale=5.0" name=
"viewport">
<script async src=
"https://e.zg-api.com/a/s/js/v1/analytics.js"></script>
<script async src="/xOR1K5b6/init.js"></script>
<script>
if (!window.console || Object.keys(window.console).length === 0) {
window.console = {
error: function() {},
log: function() {},
warn: function() {},
info: function() {},
debug: function() {},
};
}
</script>
<script>
!function(n,e){var t,o,i,c=[],f={passive:!0,capture:!0},r=new Date,a="pointerup",u="pointercancel";function p(n,c){t||(t=c,o=n,i=new Date,w(e),s())}function s(){o>=0&&o<i-r&&(c.forEach(function(n){n(o,t)}),c=[])}function l(t){if(t.cancelable){var o=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,o){function i(){p(t,o),r()}function c(){r()}function r(){e(a,i,f),e(u,c,f)}n(a,i,f),n(u,c,f)}(o,t):p(o,t)}}function w(n){["click","mousedown","keydown","touchstart","pointerdown"].forEach(function(e){n(e,l,f)})}w(n),self.perfMetrics=self.perfMetrics||{},self.perfMetrics.onFirstInputDelay=function(n){c.push(n),s()}}(addEventListener,removeEventListener);
</script>
<meta content="IE=8" http-equiv="X-UA-Compatible">
<meta content="6191" name="BUILD_NUMBER">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="mobile-web-app-capable">
<meta content="3642280443327838276" name="trace_id">
<meta content="3642280443327838276" name="request_id">
<meta content="E65CEFDE3236BB9C2E2D2BD27D4809BF" name=
"msvalidate.01">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href=
"/apple-touch-icon-precomposed.png?v=8je9EzrBKe">
<link rel="apple-touch-icon" sizes="180x180" href=
"/apple-touch-icon.png?v=8je9EzrBKe">
<link rel="icon" type="image/png" sizes="32x32" href=
"/favicon-32x32.png?v=8je9EzrBKe">
<link rel="icon" type="image/png" sizes="16x16" href=
"/favicon-16x16.png?v=8je9EzrBKe">
<link rel="manifest" href="/manifest.json?v=8je9EzrBKf">
<link rel="shortcut icon" href="/favicon.ico?v=8je9EzrBKe">
<link href="https://plus.google.com/u/1/b/111034699960542004994"
rel="publisher">
<meta name="theme-color" content="#f2f2f2">
<meta name="apple-mobile-web-app-title" content="HotPads">
<meta name="application-name" content="HotPads">
<meta name="google" content="nositelinkssearchbox">
<link rel="preconnect" href="//nodes3cdn.hotpads.com">
<link rel="preconnect" href="//photonet.hotpads.com">
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-161502-10', 'auto');
</script><!-- End Google Analytics -->
<script>
if("PerformancePaintTiming"in window){var paintObserver=new PerformanceObserver(function(e){var n=!0,r=!1,t=void 0;try{for(var a,i=e.getEntries()[Symbol.iterator]();!(n=(a=i.next()).done);n=!0){var o=a.value,v=o.name,c=Math.round(o.startTime+o.duration);ga("send","event",{eventCategory:"performanceMetrics",eventAction:v,eventValue:c,nonInteraction:!0}),paintObserver.disconnect()}}catch(e){r=!0,t=e}finally{try{n||null==i.return||i.return()}finally{if(r)throw t}}});paintObserver.observe({entryTypes:["paint"]})}
</script>
<script>
window.performance.mark("Stylesheets loaded")
</script><noscript><img src=
"http://b.scorecardresearch.com/p?c1=2&c2=6036206&cv=2.0&cj=1"></noscript>
<title>San Francisco, CA Apartments for Rent - 1,190 rentals |
HotPads</title>
<meta data-react-helmet="true" name="x-eids" content="">
<meta data-react-helmet="true" property="og:width" content="200">
<meta data-react-helmet="true" property="og:height" content="200">
<meta data-react-helmet="true" name="description" content=
"Search apartments for rent in San Francisco, CA with the largest and most trusted rental site. View detailed property information with 3D Tours and real-time updates.">
<meta data-react-helmet="true" property="og:title" content=
"San Francisco, CA Apartments for Rent - 1,190 rentals | HotPads">
<meta data-react-helmet="true" property="og:type" content=
"website">
<meta data-react-helmet="true" property="og:image" content=
"http://filenet.hotpads.com/images/logos/logo_square.png">
<meta data-react-helmet="true" property="og:url" content=
"https://hotpads.com/san-francisco-ca/apartments-for-rent">
<meta data-react-helmet="true" property="og:description" content=
"Search apartments for rent in San Francisco, CA with the largest and most trusted rental site. View detailed property information with 3D Tours and real-time updates.">
<meta data-react-helmet="true" property="og:site_name" content=
"HotPads">
<meta data-react-helmet="true" property="og:locale" content=
"en_US">
<link data-react-helmet="true" rel="next" href=
"https://hotpads.com/san-francisco-ca/apartments-for-rent?page=2&price=800-2400">
<link data-react-helmet="true" rel="canonical" href=
"https://hotpads.com/san-francisco-ca/apartments-for-rent">
<script data-react-helmet="true" type="application/ld+json">
{"@context":"http://schema.org","@graph":[{"@context":"http://schema.org","@type":"SearchResultsPage","contentLocation":{"@type":"City","name":"San Francisco","containedIn":{"@type":"State","name":"CA"}},"mainContentOfPage":{"@type":"WebPageElement","cssSelector":[".AreaNavigation-item.AreaNavigation-text > h1"]},"breadcrumb":{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"Thing","@id":"/ca/apartments-for-rent","name":"CA"}},{"@type":"ListItem","position":2,"item":{"@type":"Thing","@id":"/san-francisco-ca/apartments-for-rent","name":"San Francisco"}}]},"speakable":{"@type":"SpeakableSpecification","cssSelector":[".AreaArticle-content > p"]},"about":[{"@type":"ApartmentComplex","@id":"https://hotpads.com/prism-san-francisco-ca-94102-1m79yek/pad","url":"https://hotpads.com/prism-san-francisco-ca-94102-1m79yek/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/1447225/0001_312461486_thumb.jpg","name":"Prism","address":{"@type":"PostalAddress","streetAddress":"1028 Market St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94102","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/400-broadway-st-san-francisco-ca-94133-1x7zemg/pad-for-sublet","url":"https://hotpads.com/400-broadway-st-san-francisco-ca-94133-1x7zemg/pad-for-sublet","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/302ahnbvnwuz8/0001_928941940_thumb.jpg","name":"400 Broadway St","address":{"@type":"PostalAddress","streetAddress":"400 Broadway St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94133","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1188-mission-at-trinity-place-san-francisco-ca-94103-skfe0k/pad","url":"https://hotpads.com/1188-mission-at-trinity-place-san-francisco-ca-94103-skfe0k/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/105937/0001_317205276_thumb.jpg","name":"1188 Mission at Trinity Place","address":{"@type":"PostalAddress","streetAddress":"1188 Mission St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/vance-san-francisco-ca-94109-1m7bhsu/pad","url":"https://hotpads.com/vance-san-francisco-ca-94109-1m7bhsu/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/1349568/0001_1867348793_thumb.jpg","name":"Vance","address":{"@type":"PostalAddress","streetAddress":"830 Eddy St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/825-post-st-san-francisco-ca-94109-skfqaj/pad","url":"https://hotpads.com/825-post-st-san-francisco-ca-94109-skfqaj/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/159758/0000_1382855061_thumb.jpg","name":"825 Post St.","address":{"@type":"PostalAddress","streetAddress":"825 Post St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/33-8th-at-trinity-place-san-francisco-ca-94103-1m7aatj/pad","url":"https://hotpads.com/33-8th-at-trinity-place-san-francisco-ca-94103-1m7aatj/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/524700/0001_511208208_thumb.jpg","name":"33 8th at Trinity Place","address":{"@type":"PostalAddress","streetAddress":"33 8th St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/434-leavenworth-san-francisco-ca-94102-skfst2/pad","url":"https://hotpads.com/434-leavenworth-san-francisco-ca-94102-skfst2/pad","image":"https://photonet.hotpads.com/search/listingPhoto/NestioCommunity/P1567-11179/0001_677575094_thumb.jpg","name":"434 Leavenworth","address":{"@type":"PostalAddress","streetAddress":"434 Leavenworth St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94102","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/empire-court-san-francisco-ca-94109-svcu91/pad","url":"https://hotpads.com/empire-court-san-francisco-ca-94109-svcu91/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/494vb7zdfdp13/0001_1785556965_thumb.jpg","name":"Empire Court","address":{"@type":"PostalAddress","streetAddress":"1091 Bush St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/891-post-st-san-francisco-ca-94109-smk8p6/pad","url":"https://hotpads.com/891-post-st-san-francisco-ca-94109-smk8p6/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/226919/0001_576930357_thumb.jpg","name":"891 Post St.","address":{"@type":"PostalAddress","streetAddress":"891 Post St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/grosvenor-atrium-san-francisco-ca-94109-1xsfea4/pad","url":"https://hotpads.com/grosvenor-atrium-san-francisco-ca-94109-1xsfea4/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/3sspbf0fpddk8/0001_2009947894_thumb.jpg","name":"Grosvenor Atrium","address":{"@type":"PostalAddress","streetAddress":"1690 Broadway St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/735-taylor-san-francisco-ca-94108-sntafy/pad","url":"https://hotpads.com/735-taylor-san-francisco-ca-94108-sntafy/pad","image":"https://photonet.hotpads.com/search/listingPhoto/NestioCommunity/P1564-11179/0001_417750750_thumb.jpg","name":"735 Taylor","address":{"@type":"PostalAddress","streetAddress":"735 Taylor St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94108","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/601-ofarrell-san-francisco-ca-94109-skfckz/pad","url":"https://hotpads.com/601-ofarrell-san-francisco-ca-94109-skfckz/pad","image":"https://photonet.hotpads.com/search/listingPhoto/NestioCommunity/P1181-11179/0001_384940888_thumb.jpg","name":"601 O'Farrell","address":{"@type":"PostalAddress","streetAddress":"601 Ofarrell St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/845-sutter-san-francisco-ca-94109-skjh3m/pad","url":"https://hotpads.com/845-sutter-san-francisco-ca-94109-skjh3m/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/13y2tkaxx8az8/0001_270810536_thumb.jpg","name":"845 Sutter","address":{"@type":"PostalAddress","streetAddress":"845 Sutter St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1060-bush-st-san-francisco-ca-94109-skfdm3/pad","url":"https://hotpads.com/1060-bush-st-san-francisco-ca-94109-skfdm3/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/159756/0001_1175018370_thumb.jpg","name":"1060 Bush St.","address":{"@type":"PostalAddress","streetAddress":"1060 Bush St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/750-harrison-st-san-francisco-ca-94107-1m7ayvj/pad","url":"https://hotpads.com/750-harrison-st-san-francisco-ca-94107-1m7ayvj/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/12wpf3867gwse/0001_586147690_thumb.jpg","name":"750 Harrison St","address":{"@type":"PostalAddress","streetAddress":"750 Harrison St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94107","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/trinity-towers-apartments-san-francisco-ca-94109-skfhgu/pad","url":"https://hotpads.com/trinity-towers-apartments-san-francisco-ca-94109-skfhgu/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/105974/0001_1459550304_thumb.jpg","name":"Trinity Towers Apartments","address":{"@type":"PostalAddress","streetAddress":"888 Ofarrell St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/345-6th-st-san-francisco-ca-94103-ssg3vb/pad","url":"https://hotpads.com/345-6th-st-san-francisco-ca-94103-ssg3vb/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/259je4qvughtx/0001_703815822_thumb.jpg","name":"345 6th St","address":{"@type":"PostalAddress","streetAddress":"345 6th St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/350-union-street-apartments-san-francisco-ca-94133-skj748/pad","url":"https://hotpads.com/350-union-street-apartments-san-francisco-ca-94133-skj748/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/105955/0001_618207360_thumb.jpg","name":"350 Union Street Apartments","address":{"@type":"PostalAddress","streetAddress":"350 Union St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94133","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1335-folsom-st-san-francisco-ca-94103-1m7a765/pad","url":"https://hotpads.com/1335-folsom-st-san-francisco-ca-94103-1m7a765/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/3squkh0qn2jh1/0001_929538833_thumb.jpg","name":"1335 Folsom St","address":{"@type":"PostalAddress","streetAddress":"1335 Folsom St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/2133-stockton-street-apartments-san-francisco-ca-94133-ske6nh/pad","url":"https://hotpads.com/2133-stockton-street-apartments-san-francisco-ca-94133-ske6nh/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/105946/0001_1719032197_thumb.jpg","name":"2133 Stockton Street Apartments","address":{"@type":"PostalAddress","streetAddress":"2133 Stockton St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94133","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1190-mission-at-trinity-place-san-francisco-ca-94103-skfw2p/pad","url":"https://hotpads.com/1190-mission-at-trinity-place-san-francisco-ca-94103-skfw2p/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/126631/0001_124698993_thumb.jpg","name":"1190 Mission at Trinity Place","address":{"@type":"PostalAddress","streetAddress":"1190 Mission St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/112-columbus-avenue-san-francisco-ca-94133-1m7h0f3/pad","url":"https://hotpads.com/112-columbus-avenue-san-francisco-ca-94133-1m7h0f3/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentLinx/6981673/0000_2143235508_thumb.jpg","name":"112 Columbus Avenue","address":{"@type":"PostalAddress","streetAddress":"112 Columbus Ave","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94133","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/77-bluxome-san-francisco-ca-94107-skfsb5/pad","url":"https://hotpads.com/77-bluxome-san-francisco-ca-94107-skfsb5/pad","image":"https://photonet.hotpads.com/search/listingPhoto/EquityResidential/4041/0000_1082399628_thumb.jpg","name":"77 Bluxome","address":{"@type":"PostalAddress","streetAddress":"77 Bluxome St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94107","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/704-bush-st-san-francisco-ca-94108-sm27zn/pad","url":"https://hotpads.com/704-bush-st-san-francisco-ca-94108-sm27zn/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/1164571/0000_1251501731_thumb.jpg","name":"704 Bush St","address":{"@type":"PostalAddress","streetAddress":"704 Bush St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94108","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/990-geary-san-francisco-ca-94109-skfqsg/pad","url":"https://hotpads.com/990-geary-san-francisco-ca-94109-skfqsg/pad","image":"https://photonet.hotpads.com/search/listingPhoto/NestioCommunity/P1365-11179/0001_1856755407_thumb.jpg","name":"990 Geary","address":{"@type":"PostalAddress","streetAddress":"990 Geary St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/ava-nob-hill-san-francisco-ca-94109-skjdq8/pad","url":"https://hotpads.com/ava-nob-hill-san-francisco-ca-94109-skjdq8/pad","image":"https://photonet.hotpads.com/search/listingPhoto/AvalonBay/48/0001_751052468_thumb.jpg","name":"AVA Nob Hill","address":{"@type":"PostalAddress","streetAddress":"965 Sutter St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/48-50-golden-gate-ave-san-francisco-ca-94102-1qcjc7v/pad","url":"https://hotpads.com/48-50-golden-gate-ave-san-francisco-ca-94102-1qcjc7v/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/226917/0001_1869679273_thumb.jpg","name":"48-50 Golden Gate Ave.","address":{"@type":"PostalAddress","streetAddress":"48-50 Golden Gate Ave","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94102","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/875-post-st-san-francisco-ca-94109-tuzpzg/pad","url":"https://hotpads.com/875-post-st-san-francisco-ca-94109-tuzpzg/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/1hpacxu8038st/0001_1731392309_thumb.jpg","name":"875 Post St","address":{"@type":"PostalAddress","streetAddress":"875 Post St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/burke-lewis-apartments-san-francisco-ca-94108-skfvrr/pad","url":"https://hotpads.com/burke-lewis-apartments-san-francisco-ca-94108-skfvrr/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/q58f71v7c9kd/0001_2021684575_thumb.jpg","name":"Burke-Lewis Apartments","address":{"@type":"PostalAddress","streetAddress":"776 Bush St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94108","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/954-geary-st-san-francisco-ca-94109-sp5kdp/pad","url":"https://hotpads.com/954-geary-st-san-francisco-ca-94109-sp5kdp/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/1164574/0001_1693116254_thumb.jpg","name":"954 Geary St","address":{"@type":"PostalAddress","streetAddress":"954 Geary St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/olume-san-francisco-ca-94103-ssg765/pad","url":"https://hotpads.com/olume-san-francisco-ca-94103-ssg765/pad","image":"https://photonet.hotpads.com/search/listingPhoto/PropertySolutions/653378/0017_1788637779_thumb.jpg","name":"Olume","address":{"@type":"PostalAddress","streetAddress":"1401 Mission St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/geary-courtyard-san-francisco-ca-94102-skfnh9/pad","url":"https://hotpads.com/geary-courtyard-san-francisco-ca-94102-skfnh9/pad","image":"https://photonet.hotpads.com/search/listingPhoto/EquityResidential/383/0000_740735384_thumb.jpg","name":"Geary Courtyard","address":{"@type":"PostalAddress","streetAddress":"639 Geary St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94102","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1029-geary-st-san-francisco-ca-94109-snss1b/pad","url":"https://hotpads.com/1029-geary-st-san-francisco-ca-94109-snss1b/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/226921/0001_1215537263_thumb.jpg","name":"1029 Geary St.","address":{"@type":"PostalAddress","streetAddress":"1029 Geary St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/545-ofarrell-st-san-francisco-ca-94102-skfamf/pad","url":"https://hotpads.com/545-ofarrell-st-san-francisco-ca-94102-skfamf/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/159754/0001_320083624_thumb.jpg","name":"545 O'Farrell St.","address":{"@type":"PostalAddress","streetAddress":"545 Ofarrell St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94102","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1751-market-st-san-francisco-ca-94103-1m7a8g4/pad","url":"https://hotpads.com/1751-market-st-san-francisco-ca-94103-1m7a8g4/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/601937/0001_634955631_thumb.jpg","name":"1751 Market St.","address":{"@type":"PostalAddress","streetAddress":"1751 Market St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94103","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/840-van-ness-san-francisco-ca-94109-snthzy/pad","url":"https://hotpads.com/840-van-ness-san-francisco-ca-94109-snthzy/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/298913/0001_1754274167_thumb.jpg","name":"840 Van Ness","address":{"@type":"PostalAddress","streetAddress":"840 Van Ness Ave","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/701-taylor-san-francisco-ca-94108-skh99f/pad","url":"https://hotpads.com/701-taylor-san-francisco-ca-94108-skh99f/pad","image":"https://photonet.hotpads.com/search/listingPhoto/NestioCommunity/P1508-11179/0001_1098803473_thumb.jpg","name":"701 Taylor","address":{"@type":"PostalAddress","streetAddress":"701 Taylor St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94108","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/1755-van-ness-ave-san-francisco-ca-94109-skhkhu/pad","url":"https://hotpads.com/1755-van-ness-ave-san-francisco-ca-94109-skhkhu/pad","image":"https://photonet.hotpads.com/search/listingPhoto/Postlets/6thmcsa1gskx/0001_656012626_thumb.jpg","name":"1755 Van Ness Ave","address":{"@type":"PostalAddress","streetAddress":"1755 Van Ness Ave","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/775-geary-st-san-francisco-ca-94109-sntt9q/pad","url":"https://hotpads.com/775-geary-st-san-francisco-ca-94109-sntt9q/pad","image":"https://photonet.hotpads.com/search/listingPhoto/RentCafe/226920/0001_1226243503_thumb.jpg","name":"775 Geary St","address":{"@type":"PostalAddress","streetAddress":"775 Geary St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}},{"@type":"ApartmentComplex","@id":"https://hotpads.com/the-terraces-san-francisco-ca-94109-skfv4g/pad","url":"https://hotpads.com/the-terraces-san-francisco-ca-94109-skfv4g/pad","image":"https://photonet.hotpads.com/search/listingPhoto/EquityResidential/4025/0000_1697682637_thumb.jpg","name":"The Terraces","address":{"@type":"PostalAddress","streetAddress":"1330 Bush St","addressLocality":"San Francisco","addressRegion":"CA","postalCode":"94109","addressCountry":{"@type":"Country","name":"US"}}}],"relatedLink":["https://hotpads.com/san-francisco-ca/affordable-apartments-for-rent","https://hotpads.com/san-francisco-ca/luxury-apartments-for-rent","https://hotpads.com/san-francisco-ca/studio-apartments-for-rent","https://hotpads.com/san-francisco-ca/1-bedroom-apartments-for-rent","https://hotpads.com/san-francisco-ca/2-bedroom-apartments-for-rent","https://hotpads.com/san-francisco-ca/3-bedroom-apartments-for-rent","https://hotpads.com/san-francisco-ca/pet-friendly-apartments-for-rent","https://hotpads.com/san-francisco-ca/furnished-apartments-for-rent","https://hotpads.com/san-francisco-ca/apartments-for-rent-with-laundry","https://hotpads.com/san-francisco-ca/apartments-for-rent-with-parking","https://hotpads.com/san-francisco-ca/apartments-for-rent-with-gym","https://hotpads.com/san-francisco-ca/for-rent-by-owner","https://hotpads.com/san-francisco-ca/loft-apartments-for-rent","https://hotpads.com/san-francisco-ca/new-apartments-for-rent","https://hotpads.com/san-francisco-ca/houses-for-rent","https://hotpads.com/san-francisco-ca/new-houses-for-rent","https://hotpads.com/san-francisco-ca/rooms-for-rent","https://hotpads.com/san-francisco-ca/condos-for-rent","https://hotpads.com/san-francisco-ca/townhomes-for-rent","https://hotpads.com/south-of-market-san-francisco-ca/apartments-for-rent","https://hotpads.com/mission-san-francisco-ca/apartments-for-rent","https://hotpads.com/nob-hill-san-francisco-ca/apartments-for-rent","https://hotpads.com/pacific-heights-san-francisco-ca/apartments-for-rent","https://hotpads.com/outer-richmond-san-francisco-ca/apartments-for-rent","https://hotpads.com/outer-sunset-san-francisco-ca/apartments-for-rent","https://hotpads.com/lower-nob-hill-san-francisco-ca/apartments-for-rent","https://hotpads.com/russian-hill-san-francisco-ca/apartments-for-rent","https://hotpads.com/tenderloin-san-francisco-ca/apartments-for-rent","https://hotpads.com/inner-richmond-san-francisco-ca/apartments-for-rent","https://hotpads.com/bay-area-ca/apartments-for-rent","https://hotpads.com/oakland-ca/apartments-for-rent","https://hotpads.com/berkeley-ca/apartments-for-rent","https://hotpads.com/richmond-ca/apartments-for-rent","https://hotpads.com/san-leandro-ca/apartments-for-rent","https://hotpads.com/brisbane-ca/apartments-for-rent","https://hotpads.com/broadmoor-ca/apartments-for-rent","https://hotpads.com/daly-city-ca/apartments-for-rent","https://hotpads.com/belvedere-ca/apartments-for-rent","https://hotpads.com/tiburon-ca/apartments-for-rent","https://hotpads.com/santa-clara-county-ca/apartments-for-rent","https://hotpads.com/alameda-county-ca/apartments-for-rent","https://hotpads.com/sacramento-county-ca/apartments-for-rent","https://hotpads.com/contra-costa-county-ca/apartments-for-rent","https://hotpads.com/fresno-county-ca/apartments-for-rent","https://hotpads.com/san-francisco-county-ca/apartments-for-rent","https://hotpads.com/marin-county-ca/apartments-for-rent","https://hotpads.com/san-mateo-county-ca/apartments-for-rent","https://hotpads.com/solano-county-ca/apartments-for-rent","https://hotpads.com/napa-county-ca/apartments-for-rent","https://hotpads.com/94109/apartments-for-rent","https://hotpads.com/94501/apartments-for-rent","https://hotpads.com/94110/apartments-for-rent","https://hotpads.com/94122/apartments-for-rent","https://hotpads.com/94080/apartments-for-rent","https://hotpads.com/94117/apartments-for-rent","https://hotpads.com/94115/apartments-for-rent","https://hotpads.com/94102/apartments-for-rent","https://hotpads.com/94103/apartments-for-rent","https://hotpads.com/94114/apartments-for-rent"],"specialty":"Apartment and House Rental Search","reviewedBy":{"@type":"Organization","name":"HotPads.com"}},{"@context":"http://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"How expensive is it to rent an apartment in San Francisco, CA?","acceptedAnswer":{"@type":"Answer","text":"The median San Francisco, CA rent is $3,295 which is above the national median rent of $1,469. In addition to the rent cost, you need to also account for costs of basic utilities consisting of water, garbage, electric and natural gas. Check with your local San Francisco utilities for estimates."}},{"@type":"Question","name":"How many Apartments are available now in San Francisco, CA?","acceptedAnswer":{"@type":"Answer","text":"There are currently 1,190 apartments for rent on the Zillow platform in San Francisco, which fluctuated -0.15% over the past 30-days. "}},{"@type":"Question","name":"How does HotPads make it easier to find an apartment in San Francisco, CA?","acceptedAnswer":{"@type":"Answer","text":"HotPads amenity filters and keyword searches allow you to target exactly what you're looking for in the San Francisco, CA area. We surface the largest marketplace of apartment rentals to search through, so you can feel confident you'll find the best available rental in San Francisco. When new apartment listings come on-market, our recommended searches will notify you in real-time, giving you an advantage to contact landlords and property managers as fast as possible."}},[{"@type":"Question","name":"Thinking of moving to San Francisco? Here's what you need to know.","acceptedAnswer":{"@type":"Answer","text":"Foggy San Francisco is famous for everything from the Golden Gate Bridge and sourdough bread to its many hills, cable cars and stunning Victorian architecture. Located on a peninsula, the city is bordered by both the Pacific Ocean and San Francisco Bay. San Francisco has a population of 837,000, while the Bay Area's population is over 7 million. The area experiences a fairly mild climate year-round."}},{"@type":"Question","name":"Who's there?","acceptedAnswer":{"@type":"Answer","text":"More than 35 percent of people living in San Francisco were born outside of the United States, making the city highly diverse and full of international character. More than 52 percent of adults have at least a college degree, with many residents working in engineering, medicine, technology or insurance. The city's top employers are Bechtel Corp., California Pacific Medical Center, California Physicians Insurance Corporation and Deloitte. Additionally, the area is known for its sizable LGBTQ population, and it's a great place for young, single career-minded folks to live and thrive. And with the University of California, San Francisco and Golden Gate University, many students also call San Francisco home."}},{"@type":"Question","name":"What's around San Francisco?","acceptedAnswer":{"@type":"Answer","text":"The hills are alive with vibrant neighborhoods, like the gay-friendly Castro and The Haight, once a hippie haven now populated by hipsters. Soma is home to loft apartments and dotcom diehards, and Hayes boasts high-dollar real estate and true community feel. San Francisco's neighborhoods are densely populated and full of everything you need within walking distance, including cafes, grocery stores, galleries and salons. Because of the nerve-wrecking traffic, most residents forego a car in favor of public transport (the bus being a popular mode) though the average commute is more than a half-hour long."}},{"@type":"Question","name":"What do you do in San Francisco?","acceptedAnswer":{"@type":"Answer","text":"From Golden Gate Park to Fisherman's Wharf, there's a lot to do in San Francisco. Its Chinatown is the country's oldest, and locals flock here for the dim sum and other Chinese specialties. In North Beach, you can enjoy al fresco dining at a checker-clothed table in picturesque Little Italy, while Nob Hill is home to Huntington Park and many landmarks worth exploring, like Pier 7."}}]]}]}
</script>
<script src=
"https://cdn.cookielaw.org/consent/0d0cd8f3-fd5f-4532-b804-f6fd2ba83287.js"
defer type="text/javascript" charset="UTF-8"></script>
<link data-chunk="index" rel="preload" as="script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~index-99edc65ce31d9256f80e.js">
<link data-chunk="index" rel="preload" as="style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/index-e5e12145cfee05e78ddc.css">
<link data-chunk="index" rel="preload" as="script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/index-e5e12145cfee05e78ddc.js">
<link data-chunk="HeaderNav.loadable" rel="preload" as="style"
href="//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNav.loadable-ff3fb90f9184b9f362bc.css">
<link data-chunk="HeaderNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNav.loadable-ff3fb90f9184b9f362bc.js">
<link data-chunk="HeaderNavMdAndUp.loadable" rel="preload" as=
"style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNavMdAndUp.loadable-07817ec028cccec1a009.css">
<link data-chunk="HeaderNavMdAndUp.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNavMdAndUp.loadable-07817ec028cccec1a009.js">
<link data-chunk="HamburgerNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~HamburgerNav.loadable-8814b3c0c1050e74e4ef.js">
<link data-chunk="HamburgerNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HamburgerNav.loadable-2e455bf5f1e02f9c48c5.js">
<link data-chunk="SplitMapTemplate.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~SplitMapTemplate.loadable-349039a69ea9dac2943c.js">
<link data-chunk="SplitMapTemplate.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AlertsView.loadable~AutocompleteSearchInput.loadable~FeedbackSuccessPage.loadable~FetchAreaWrapper.l~60686b9a-ed8118923d6474e6cc56.js">
<link data-chunk="SplitMapTemplate.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AlertsView.loadable~AutocompleteSearchInput.loadable~FeedbackSuccessPage.loadable~FetchListingWrappe~c74ec52e-828c8cd4b6e505b1e341.js">
<link data-chunk="SplitMapTemplate.loadable" rel="preload" as=
"style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/SplitMapTemplate.loadable-5e37fdd548fdfd44e632.css">
<link data-chunk="SplitMapTemplate.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/SplitMapTemplate.loadable-5e37fdd548fdfd44e632.js">
<link data-chunk="FilterNav.loadable" rel="preload" as="style"
href="//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable~AutocompleteSearchInput.loadable~FilterNav.loadable~HdpComponent.load~c13aee1d-216faa4a387528f4b4b4.css">
<link data-chunk="FilterNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable~AutocompleteSearchInput.loadable~FilterNav.loadable~HdpComponent.load~c13aee1d-216faa4a387528f4b4b4.js">
<link data-chunk="FilterNav.loadable" rel="preload" as="style"
href="//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable~HpxPage.loadable-a3fe717bd6d9aa4430d8.css">
<link data-chunk="FilterNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable~HpxPage.loadable-a3fe717bd6d9aa4430d8.js">
<link data-chunk="FilterNav.loadable" rel="preload" as="style"
href="//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable-033a88d2780cf526e8a5.css">
<link data-chunk="FilterNav.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable-033a88d2780cf526e8a5.js">
<link data-chunk="AutocompleteSearchInput.loadable" rel="preload"
as="script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~AutocompleteSearchInput.loadable-9013493a089abe4efab8.js">
<link data-chunk="AutocompleteSearchInput.loadable" rel="preload"
as="style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AutocompleteSearchInput.loadable-cf7f545890ca29bf344b.css">
<link data-chunk="AutocompleteSearchInput.loadable" rel="preload"
as="script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AutocompleteSearchInput.loadable-cf7f545890ca29bf344b.js">
<link data-chunk="Animation.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/Animation.loadable-e2023bec64058b2313b6.js">
<link data-chunk="MapWrapper.loadable" rel="preload" as="style"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/MapWrapper.loadable-28b6230fcc6b5587709d.css">
<link data-chunk="MapWrapper.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/MapWrapper.loadable-28b6230fcc6b5587709d.js">
<link data-chunk="FetchAreaWrapper.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~FeedbackSuccessPage.loadable~FetchAreaWrapper.loadable~FetchListingWrapper.loadable~FrontPag~db0f7fd1-a0f128543afce97583f3.js">
<link data-chunk="FetchAreaWrapper.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~FetchAreaWrapper.loadable-103478b96b1852dd010d.js">
<link data-chunk="FetchAreaWrapper.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FeedbackSuccessPage.loadable~FetchAreaWrapper.loadable~FrontPage.loadable~MyListPage.loadable~Report~bb41eceb-a8ebe151437f5e6a2658.js">
<link data-chunk="FetchAreaWrapper.loadable" rel="preload" as=
"style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FetchAreaWrapper.loadable-5b8d59328719d295ba78.css">
<link data-chunk="FetchAreaWrapper.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FetchAreaWrapper.loadable-5b8d59328719d295ba78.js">
<link data-chunk="AreaListingsContainer.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/vendors~AreaListingsContainer.loadable~HdpComponent.loadable-319823e2ace60a8ad80b.js">
<link data-chunk="AreaListingsContainer.loadable" rel="preload" as=
"style" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable-54597dc3e4afa2de68ca.css">
<link data-chunk="AreaListingsContainer.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable-54597dc3e4afa2de68ca.js">
<link data-chunk="PagerContainer.loadable" rel="preload" as="style"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/PagerContainer.loadable-12006728bb4954c1ad41.css">
<link data-chunk="PagerContainer.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/PagerContainer.loadable-12006728bb4954c1ad41.js">
<link data-chunk="ExploreWrapper.loadable" rel="preload" as="style"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/ExploreWrapper.loadable-5aa380eef48bd98c4808.css">
<link data-chunk="ExploreWrapper.loadable" rel="preload" as=
"script" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/ExploreWrapper.loadable-5aa380eef48bd98c4808.js">
<link data-chunk="FaqSection.loadable" rel="preload" as="style"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FaqSection.loadable-fa0c4779673b7742efdb.css">
<link data-chunk="FaqSection.loadable" rel="preload" as="script"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FaqSection.loadable-fa0c4779673b7742efdb.js">
<style>
blockquote,body,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,pre,td,textarea,th,ul{
margin:0;
padding:0
}
h1,h2,h3,h4,h5,h6{
font-weight:inherit;
font-style:inherit;
font-size:100%;
font-family:inherit
}
table{
border-collapse:collapse;
border-spacing:0
}
fieldset,img{
border:0
}
strong{
font-style:normal;
font-weight:700
}
address,caption,cite,code,dfn,em,th,var{
font-style:normal;
font-weight:400
}
ol,ul{
list-style:none
}
caption,th{
text-align:left
}
q:after,q:before{
content:''
}
abbr,acronym{
border:0;
font-variant:normal
}
sup{
vertical-align:text-top
}
sub{
vertical-align:text-bottom
}
input,select,textarea{
font-family:inherit;
font-size:inherit;
font-weight:inherit
}
input,select,textarea{
font-size:100%
}
*,:after,:before{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
button{
margin:0;
border:none;
background-color:transparent;
color:inherit;
padding:0
}
iframe{
border:none
}
body,html{
margin:0;
padding:0;
min-width:320px;
height:100%
}
body,button,html,input{
font-size:16px;
line-height:1.2;
-webkit-font-smoothing:antialiased;
font-family:Proxima-nova,Helvetica Neue,Helvetica,Arial,sans-serif;
letter-spacing:.5px
}
body{
overflow-y:auto;
-webkit-overflow-scrolling:touch;
color:#6e6e6e
}
body.lock-vertical-scroll{
-webkit-overflow-scrolling:auto;
overflow-y:hidden;
position:fixed;
width:100vw
}
body.lock-vertical-scroll-portal{
-webkit-overflow-scrolling:auto;
overflow-y:hidden;
width:100vw
}
table thead tr th,table tr td{
padding-top:2px;
padding-bottom:2px
}
a{
cursor:pointer;
color:#007a70;
text-decoration:none;
font-weight:700;
color:#000
}
</style>
<link data-chunk="index" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/index-e5e12145cfee05e78ddc.css">
<link data-chunk="HeaderNav.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNav.loadable-ff3fb90f9184b9f362bc.css">
<link data-chunk="HeaderNavMdAndUp.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/HeaderNavMdAndUp.loadable-07817ec028cccec1a009.css">
<link data-chunk="SplitMapTemplate.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/SplitMapTemplate.loadable-5e37fdd548fdfd44e632.css">
<link data-chunk="FilterNav.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable~AutocompleteSearchInput.loadable~FilterNav.loadable~HdpComponent.load~c13aee1d-216faa4a387528f4b4b4.css">
<link data-chunk="FilterNav.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable~HpxPage.loadable-a3fe717bd6d9aa4430d8.css">
<link data-chunk="FilterNav.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FilterNav.loadable-033a88d2780cf526e8a5.css">
<link data-chunk="AutocompleteSearchInput.loadable" rel=
"stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AutocompleteSearchInput.loadable-cf7f545890ca29bf344b.css">
<link data-chunk="MapWrapper.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/MapWrapper.loadable-28b6230fcc6b5587709d.css">
<link data-chunk="FetchAreaWrapper.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FetchAreaWrapper.loadable-5b8d59328719d295ba78.css">
<link data-chunk="AreaListingsContainer.loadable" rel="stylesheet"
href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AreaListingsContainer.loadable-54597dc3e4afa2de68ca.css">
<link data-chunk="PagerContainer.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/PagerContainer.loadable-12006728bb4954c1ad41.css">
<link data-chunk="ExploreWrapper.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/ExploreWrapper.loadable-5aa380eef48bd98c4808.css">
<link data-chunk="FaqSection.loadable" rel="stylesheet" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/FaqSection.loadable-fa0c4779673b7742efdb.css">
<style>
@media print {#ghostery-tracker-tally {display:none !important}}
</style>
<link type="text/css" href=
"https://cdn.cookielaw.org/skins/5.9.0/default_flat_bottom_two_button_black/v2/css/optanon.css"
rel="stylesheet">
<style>
#optanon ul#optanon-menu li { background-color: #D8D8D8 !important }#optanon ul#optanon-menu li.menu-item-selected { background-color: !important }#optanon #optanon-popup-wrapper .optanon-white-button-middle { background-color: #35CDB8 !important }.optanon-alert-box-wrapper .optanon-alert-box-button-middle { background-color: #35CDB8 !important; border-color: #35CDB8 !important; }#optanon #optanon-popup-wrapper .optanon-white-button-middle button { color: #ffffff !important }.optanon-alert-box-wrapper .optanon-alert-box-button-middle button { color: #ffffff !important }#optanon #optanon-popup-bottom { background-color: #FFFFFF !important }#optanon.modern #optanon-popup-top, #optanon.modern #optanon-popup-body-left-shading { background-color: #FFFFFF !important }.optanon-alert-box-wrapper { background-color: !important }.optanon-alert-box-wrapper .optanon-alert-box-bg p { color: !important }
</style>
<style data-styled="" data-styled-version="4.3.2"></style>
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/qs-f4d3288a9e24ff885c0e.js"></script>
<link rel="stylesheet" type="text/css" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/GoogleMap.loadable-ff0cdbf65db659a9e89d.css">
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/GoogleMap.loadable-ff0cdbf65db659a9e89d.js"></script>
<script async src="https://www.google-analytics.com/analytics.js"
class="optanon-category-3" type="text/javascript"></script>
<script class="optanon-category-4" type="text/javascript" src=
"//bat.bing.com/bat.js" async></script>
<script async type="text/javascript" src=
"https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/common.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/util.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/map.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/layers.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/marker.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/stats.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/onion.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/poly.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/infowindow.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/controls.js"></script>
<link rel="stylesheet" type="text/css" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/RangeSlider.loadable-2f1a4705fada7b95419a.css">
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/RangeSlider.loadable-2f1a4705fada7b95419a.js"></script>
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AdvancedFilter.loadable~HdpComponent.loadable~MoveInDateFilter.loadable-ed9c4e86b6d8a3bb3e66.js"></script>
<link rel="stylesheet" type="text/css" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AdvancedFilter.loadable-7c15c2cf26558735cdb1.css">
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/AdvancedFilter.loadable-7c15c2cf26558735cdb1.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/places_impl.js"></script>
<script type="text/javascript" charset="UTF-8" src=
"https://maps.googleapis.com/maps-api-v3/api/js/46/12a/geocoder.js"></script>
<link rel="stylesheet" type="text/css" href=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/RentalTypes.loadable-ed17e638319984aa76cf.css">
<script charset="utf-8" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/RentalTypes.loadable-ed17e638319984aa76cf.js"></script>
</head>
<body class="">
<div id="optanon" class="modern">
<div id="optanon-popup-bg"></div>
<div id="optanon-popup-wrapper" role="dialog" aria-modal="true"
tabindex="-1" lang="en-GB">
<div id="optanon-popup-top">
<div id="optanon-close" style=
"background: url(https://cdn.cookielaw.org/skins/5.9.0/default_flat_bottom_two_button_black/v2/images/optanon-pop-up-close.png);width:34px;height:34px;">
</div>
</div>
<div id="optanon-popup-body">
<div id="optanon-popup-body-left">
<div id="optanon-popup-body-left-shading"></div>
<div id="optanon-branding-top-logo" style=
"background-image: url('https://cdn.cookielaw.org/logos/6309/6309:hotpads.com/Screen%20Shot%202019-01-04%20at%203.20.11%20PM.png') !important;">
</div>
<ul id="optanon-menu" aria-label="Navigation Menu" role="tablist">
<li class="menu-item-on menu-item-about" title="Your Privacy"
data-group=
"{"GroupLanguagePropertiesSets":[{"GroupName":{"Text":"Your Privacy"},"GroupDescription":{"Text":"We use cookies to remember log-in details and improve the quality of Services by identifying information which is most interesting to you, tracking trends, measuring the effectiveness of advertising, or storing information you may want to retrieve on a regular basis, such as your favorite homes. If you choose to disable cookies, many of the free features of the Services will not operate properly."}}]}">
<p class="preference-menu-item"><button role="tab" aria-selected=
"true" aria-controls="Your-Privacy" id="Your-Privacy">Your
Privacy</button></p>
</li>
<li class="menu-item-necessary menu-item-on" title=
"Required Cookies" data-group=
"{"ShowInPopup":true,"Order":0,"OptanonGroupId":1,"Parent":null,"GroupLanguagePropertiesSets":[{"DefaultStatus":{"Text":"Always Active"},"GroupDescription":{"Text":"These cookies are required to enable core site functionality."},"GroupName":{"Text":"Required Cookies"},"IsDntEnabled":false}],"Cookies":[{"Name":"pis","Host":"hotpads.com","IsSession":true,"Length":0},{"Name":"_csrf","Host":"hotpads.com","IsSession":true,"Length":0},{"Name":"_pxvid","Host":".hotpads.com","IsSession":false,"Length":539},{"Name":"pxvid","Host":"hotpads.com","IsSession":false,"Length":539},{"Name":"ut","Host":"hotpads.com","IsSession":false,"Length":699},{"Name":"ACEGI_SECURITY_HASHED_REMEMBER_ME_COOKIE","Host":"hotpads.com","IsSession":false,"Length":2914687},{"Name":"rental_csrftoken","Host":"hotpads.com","IsSession":true,"Length":0},{"Name":"_px3","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"_pxff_tm","Host":"hotpads.com","IsSession":false,"Length":0},{"Name":"OptanonConsent","Host":"hotpads.com","IsSession":false,"Length":365},{"Name":"OptanonAlertBoxClosed","Host":"hotpads.com","IsSession":false,"Length":365},{"Name":"__cfduid","Host":".help.hotpads.com","IsSession":false,"Length":364},{"Name":"SESSION_TOKEN","Host":"hotpads.com","IsSession":false,"Length":699},{"Name":"__cfruid","Host":".help.hotpads.com","IsSession":true,"Length":0},{"Name":"_pxhd","Host":"hotpads.com","IsSession":true,"Length":0}],"Purposes":[],"CustomGroupId":null,"GroupId":172150}"
data-optanongroupid="1">
<p class="preference-menu-item"><button role="tab" aria-selected=
"false" aria-controls="Required-Cookies" id=
"Required-Cookies">Required Cookies</button></p>
</li>
<li class="menu-item-on menu-item-functional" title=
"Functional Cookies" data-group=
"{"ShowInPopup":true,"Order":2,"OptanonGroupId":3,"Parent":null,"GroupLanguagePropertiesSets":[{"DefaultStatus":{"Text":"Active"},"GroupDescription":{"Text":"These cookies allow us to analyze site usage so we can measure and improve performance."},"GroupName":{"Text":"Functional Cookies"},"IsDntEnabled":false}],"Cookies":[{"Name":"_gat_UA-21174015-74","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"_hjIncludedInSample","Host":"hotpads.com","IsSession":true,"Length":0},{"Name":"_gid","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"_ga","Host":".hotpads.com","IsSession":false,"Length":729},{"Name":"_gat","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"_zendesk_session","Host":"help.hotpads.com","IsSession":true,"Length":0},{"Name":"_help_center_session","Host":"help.hotpads.com","IsSession":true,"Length":0},{"Name":"_zendesk_shared_session","Host":"help.hotpads.com","IsSession":true,"Length":0},{"Name":"_zendesk_authenticated","Host":"help.hotpads.com","IsSession":false,"Length":2915017},{"Name":"FSsampler","Host":"hotpads.com","IsSession":false,"Length":27},{"Name":"__stripe_mid","Host":".hotpads.com","IsSession":false,"Length":364},{"Name":"_gat_gtag_UA_161502_10","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"__stripe_sid","Host":".hotpads.com","IsSession":false,"Length":0},{"Name":"_gat_ZillowAnalytics","Host":".hotpads.com","IsSession":false,"Length":0}],"Purposes":[],"CustomGroupId":null,"GroupId":172147}"
data-optanongroupid="3">
<p class="preference-menu-item"><button role="tab" aria-selected=
"false" aria-controls="Functional-Cookies" id=
"Functional-Cookies">Functional Cookies</button></p>
</li>
<li class="menu-item-on menu-item-advertising" title="Advertising"
data-group=
"{"ShowInPopup":true,"Order":3,"OptanonGroupId":4,"Parent":null,"GroupLanguagePropertiesSets":[{"DefaultStatus":{"Text":"Active"},"GroupDescription":{"Text":"These cookies are used by advertising companies to serve ads that are relevant to your interests."},"GroupName":{"Text":"Advertising"},"IsDntEnabled":false}],"Cookies":[{"Name":"DoubleClickSession","Host":".hotpads.com","IsSession":true,"Length":0},{"Name":"_gcl_au","Host":".hotpads.com","IsSession":false,"Length":89},{"Name":"KruxPixel","Host":".hotpads.com","IsSession":false,"Length":2},{"Name":"GoogleAdServingTest","Host":"hotpads.com","IsSession":true,"Length":0},{"Name":"__gads","Host":".hotpads.com","IsSession":false,"Length":729},{"Name":"zgcus_aeuut","Host":"hotpads.com","IsSession":false,"Length":24855},{"Name":"zgcus_aeut","Host":"hotpads.com","IsSession":false,"Length":24855}],"Purposes":[],"CustomGroupId":null,"GroupId":172148}"
data-optanongroupid="4">
<p class="preference-menu-item"><button role="tab" aria-selected=
"false" aria-controls="Advertising" id=
"Advertising-undefined">Advertising</button></p>
</li>
<li class="menu-item-moreinfo menu-item-off" title=
"More Information">
<p class="preference-menu-item"><a target="_blank" aria-label=
"More Information" href="https://www.zillow.com/corp/Privacy.htm"
onclick=
"Optanon.TriggerGoogleAnalyticsEvent('OneTrust Cookie Consent', 'Preferences Cookie Policy');">
More Information</a></p>
</li>
</ul>
</div>
<div>
<div id="optanon-popup-body-right">
<p role="heading" aria-level="2" class=
"legacy-preference-banner-title h2" aria-label=
"Cookie Preferences">Cookie Preferences</p>
<div class="vendor-header-container">
<p class="header-3" role="heading" aria-level="3"></p>
<div id="optanon-popup-more-info-bar">
<div class="optanon-status">
<div class="optanon-status-editable">
<form>
<p><span class="fieldset"><input type="checkbox" value="check" id=
"chkMain" checked="checked" class=
"legacy-group-status optanon-status-checkbox"><label for=
"chkMain">Active</label></span></p>
</form>
</div>
<div class="optanon-status-always-active optanon-status-on">
<p>Always Active</p>
</div>
</div>
</div>
</div>
<div class="optanon-main-info-text" role="tabpanel"></div>
</div>
</div>
<div class="optanon-bottom-spacer"></div>
</div>
<div id="optanon-popup-bottom"><a href=
"https://onetrust.com/poweredbyonetrust" target="_blank" rel=
"noopener">
<div id="optanon-popup-bottom-logo" alt="OneTrust Website" style=
"background: url(https://cdn.cookielaw.org/skins/5.9.0/default_flat_bottom_two_button_black/v2/images/cookie-collective-top-bottom.png);width:155px;height:35px;"
title="powered by OneTrust"></div>
</a>
<div class=
"optanon-button-wrapper optanon-save-settings-button optanon-close optanon-close-consent">
<div class="optanon-white-button-left"></div>
<div class="optanon-white-button-middle"><button title=
"Save Settings" aria-label="Save Settings" onclick=
"Optanon.TriggerGoogleAnalyticsEvent('OneTrust Cookie Consent', 'Preferences Save Settings');">
Save Settings</button></div>
<div class="optanon-white-button-right"></div>
</div>
<div class=
"optanon-button-wrapper optanon-allow-all-button optanon-allow-all"
style="display: none;">
<div class="optanon-white-button-left"></div>
<div class="optanon-white-button-middle"><button title="Allow All"
aria-label="Allow All" onclick=
"Optanon.TriggerGoogleAnalyticsEvent('OneTrust Cookie Consent', 'Preferences Allow All');">
Allow All</button></div>
<div class="optanon-white-button-right"></div>
</div>
</div>
</div>
</div>
<div id="app-root">
<div class="AppTemplate styles__AppTemplate-sc-14peicx-0 hGEHyu"
id="app-container" role="main">
<div class="HeaderNav"><a href="#skip-topnav-target" class=
"styles__Link-sc-1x3jprp-0 fbRFAG">Skip main navigation</a>
<div class="HeaderNav-wrapper">
<div class="HeaderNavMdAndUp show-for-medium-up">
<header>
<nav class="HeaderNavMdAndUp-header-nav" aria-label="main">
<button class="HeaderNavMdAndUp-menu-icon" alt=
"HotPads navigation menu" aria-expanded="false"><span class=
"styles__VisuallyHidden-sc-1toj3pq-0 ljyCrz">Navigation
menu</span></button>
<div>
<div class=
"HamburgerNavStyles__HamburgerMenuOverlay-qbi6c-0 ijKWwU"></div>
<nav class="HamburgerNavStyles__HamburgerMenu-qbi6c-1 dPaxRN">
<a href="/" class=
"HamburgerNavStyles__LogoContainer-qbi6c-6 GEueM">
<div style="height:100px;width:100px" class=""></div>
</a>
<ul class="HamburgerNavStyles__HamburgerMenuList-qbi6c-3 fafdVB">
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<a class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href="/san-francisco-ca/apartments-for-rent">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Search for
rent</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<a class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href="/san-francisco-ca/houses-for-rent">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Houses for
rent</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<a class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href="/user/listings/my-list"><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/heart.min-3PL1S1n.svg"
alt="" height="20px" width="20px" class=
"HamburgerNavStyles__MenuIcon-qbi6c-8 bkZVaC"><span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">My
List</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"https://hotpads.com/renter-hub/inbox" class=
"styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false" href=
"https://hotpads.com/renter-hub/inbox" rel="noopener noreferrer">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Messages</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<a class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href="/user/saved-search">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Search
alerts</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<a class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href="/list-your-rental">
<div style="height:100px;width:100px" class=""></div>
<span class="HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">List
your rental</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<div style="height:100px;width:100px" class=""></div>
<button class=
"HamburgerNavStyles__HamburgerMenuModalButton-qbi6c-5 fVCQsp"><span class="HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Send
feedback</span></button></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD">
<div style="height:100px;width:100px" class=""></div>
<button class=
"HamburgerNavStyles__HamburgerMenuModalButton-qbi6c-5 fVCQsp"><span class="HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Sign
in / register</span></button></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"/renter-hub/payments" class="styles__Linker-sc-1h0h5dw-0 daMQrB"
aria-disabled="false" href="/renter-hub/payments" rel=
"noopener noreferrer">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Payments</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"https://www.zillow.com/renter-hub/applications/?utm_medium=web&utm_source=hotpads&utm_campaign=applyNow"
class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href=
"https://www.zillow.com/renter-hub/applications/?utm_medium=web&utm_source=hotpads&utm_campaign=applyNow"
rel="noopener noreferrer">
<div style="height:100px;width:100px" class=""></div>
<span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Applications</span></a></li>
</ul>
<p class=
"HamburgerNavStyles__HamburgerMenuSectionHeader-qbi6c-2 izcOZm">
Apps</p>
<ul class="HamburgerNavStyles__HamburgerMenuList-qbi6c-3 fafdVB">
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"https://app.us.adjust.com/4xxpwq?campaign=web&adgroup=hamburgerMenu&creative=ios"
class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href=
"https://app.us.adjust.com/4xxpwq?campaign=web&adgroup=hamburgerMenu&creative=ios"
rel="noopener noreferrer"><span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">iOS</span></a></li>
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"https://app.us.adjust.com/v9a1qr?campaign=web&adgroup=hamburgerMenu&creative=android"
class="styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false"
href=
"https://app.us.adjust.com/v9a1qr?campaign=web&adgroup=hamburgerMenu&creative=android"
rel="noopener noreferrer"><span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Android</span></a></li>
</ul>
<p class=
"HamburgerNavStyles__HamburgerMenuSectionHeader-qbi6c-2 izcOZm">
Resources</p>
<ul class="HamburgerNavStyles__HamburgerMenuList-qbi6c-3 fafdVB">
<li class=
"HamburgerNavStyles__HamburgerMenuListItem-qbi6c-4 bNIPgD"><a to=
"https://hotpads.com/blog" class=
"styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false" href=
"https://hotpads.com/blog" rel="noopener noreferrer"><span class=
"HamburgerNavStyles__MenuSpanText-qbi6c-9 ieapiL">Blog</span></a></li>
</ul>
</nav>
</div>
<div class="HeaderNavMdAndUp-logo-wrapper"><a class=
"styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false" href=
"/"><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/hotpads-logo-with-text.min-2Wmox2P.svg"
class="HeaderNavMdAndUp-logo" alt="HotPads"></a></div>
<ul class="HeaderNavMdAndUp-nav-list">
<li class="HeaderNavMenuItem"><a class=
"HeaderNavMenuItem-item active styles__Linker-sc-1h0h5dw-0 fsIYZe"
aria-disabled="true" href=
"/san-francisco-ca/apartments-for-rent">Apartments</a></li>
<li class="HeaderNavMenuItem"><a class=
"HeaderNavMenuItem-item styles__Linker-sc-1h0h5dw-0 fjOsTU"
aria-disabled="false" href=
"/san-francisco-ca/houses-for-rent">Houses</a></li>
<li class="HeaderNavMenuItem"><a class=
"HeaderNavMenuItem-item styles__Linker-sc-1h0h5dw-0 fjOsTU"
aria-disabled="false" href="/user/listings/my-list">My
list</a></li>
<a class="HeaderNavMenuItem HeaderNavMenuItem-item Linker-default"
href="https://hotpads.com/renter-hub/inbox">Messages</a>
<li class="HeaderNavMenuItem"><a class=
"HeaderNavMenuItem-item styles__Linker-sc-1h0h5dw-0 fjOsTU"
aria-disabled="false" href="/user/saved-search">Alerts</a></li>
</ul>
<ul class="LoginStatus">
<li class="LoginStatus-properties"><a class=
"styles__Linker-sc-1h0h5dw-0 daMQrB" aria-disabled="false" href=
"/list-your-rental">List your rental</a></li>
<li class="LoginStatus-link">
<div class="LoginStatus-group"><a aria-disabled="false" tabindex=
"0" class="styles__Linker-sc-1h0h5dw-0 hsjTpO" href="">Sign in /
Register</a></div>
</li>
</ul>
</nav>
</header>
</div>
</div>
</div>
<div id="skip-topnav-target" tabindex="-1"></div>
<section aria-label="filter" class="FilterNav">
<div class="FilterNav-container">
<div class="FilterNav-search-wrapper">
<div class=
"AutocompleteV2 AutocompleteV2-full styles__AutocompleteV2Container-r2dbk3-0 dpdGyO">
<div class=
"AutocompleteV2-input-container AutocompleteV2-input-container-full styles__AutocompleteV2InputContainer-r2dbk3-1 jQKczY">
<img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/search-v2-gray-3CqEn-Q.svg"
class=
"AutocompleteV2-search-icon AutocompleteV2-search-icon-full styles__SearchIcon-r2dbk3-2 jSlXRP"
alt="">
<div class=
"Input AutocompleteV2-input AutocompleteV2-input-full styles__Input-r2dbk3-5 dUuKNH">
<div class="Input-container"><input type="text" class=
"Input-element AutocompleteV2-dimmed-text Input-element-no-border Input-xl Utils-text-overflow"
placeholder="San Francisco, CA" aria-label="Search listings" value=
"" role="combobox" aria-expanded="false" aria-owns=
"autocomplete-options" aria-required="false"></div>
</div>
<div role="status" aria-atomic="true" aria-live="polite" class=
"styles__VisuallyHidden-sc-1toj3pq-0 ljyCrz"><span>2<!-- -->
options</span></div>
</div>
</div>
</div>
<div class="InlineFilter"><button class=
"AllFiltersDropdown Utils-text-overflow AllFiltersDropdown-teal active">
<span class="AllFiltersDropdown-num-filters">2</span> <span class=
"AllFiltersDropdown-filter-text styles__Text-me4q2-0 bqhVCF">All
filters</span><img alt="" src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/arrow-grey-2mXtZk_.svg"
aria-expanded="true" class=
"AllFiltersDropdown-arrow active Utils-arrow-up"></button>
<div class="FilterPresetList">
<div class=
"ButtonDropdownV2-clickable Utils-text-overflow Utils-vert-center ButtonDropdownV2-clickable-sm"
tabindex="0"><button class=
"ButtonDropdownV2 FilterPresetList-item FilterPresetList-hide-md ButtonDropdownV2-teal-theme">
<span class=
"ButtonDropdownV2-text ButtonDropdownV2-text-teal-theme styles__Text-me4q2-0 bqhVCF">
$800 – $2,400</span><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/arrow-grey-2mXtZk_.svg"
aria-expanded="false" class=
"ButtonDropdownV2-arrow Utils-arrow-down ButtonDropdownV2-arrow-sm"></button></div>
<div class=
"ButtonDropdownV2-clickable Utils-text-overflow Utils-vert-center ButtonDropdownV2-clickable-sm"
tabindex="0"><button class=
"ButtonDropdownV2 FilterPresetList-item FilterPresetList-hide-md"><span class="ButtonDropdownV2-text styles__Text-me4q2-0 bqhVCF">
All beds, all baths</span><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/arrow-grey-2mXtZk_.svg"
aria-expanded="false" class=
"ButtonDropdownV2-arrow Utils-arrow-down ButtonDropdownV2-arrow-sm"></button></div>
<div class=
"ButtonDropdownV2-clickable Utils-text-overflow Utils-vert-center ButtonDropdownV2-clickable-sm"
tabindex="0"><button class=
"ButtonDropdownV2 FilterPresetList-item FilterPresetList-hide-md"><span class="ButtonDropdownV2-text styles__Text-me4q2-0 bqhVCF">
Commute</span><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/arrow-grey-2mXtZk_.svg"
aria-expanded="false" class=
"ButtonDropdownV2-arrow Utils-arrow-down ButtonDropdownV2-arrow-sm"></button></div>
<div class=
"ButtonDropdownV2-clickable Utils-text-overflow Utils-vert-center ButtonDropdownV2-clickable-sm"
tabindex="0"><button class=
"ButtonDropdownV2 FilterPresetList-item FilterPresetList-hide-md"><span class="ButtonDropdownV2-text styles__Text-me4q2-0 bqhVCF">
Pets</span><img src=
"//nodes3cdn.hotpads.com/hotpads-web/1639608918/arrow-grey-2mXtZk_.svg"
aria-expanded="false" class=
"ButtonDropdownV2-arrow Utils-arrow-down ButtonDropdownV2-arrow-sm"></button></div>
</div>
<button class="InlineFilter-clear"><span class=
"styles__Text-me4q2-0 kTIEzc">Clear all
filters</span></button></div>
<div class="FilterNav-alert-button"><button id="AlertButton" class=
"Button Button-sm Button-secondary"></button>
<div class="Animation AlertButton-icon" aria-hidden="true">
<button id="AlertButton" class=
"Button Button-sm Button-secondary"><svg xmlns=
"http://www.w3.org/2000/svg" viewbox="0 0 20 20" width="20" height=
"20" preserveaspectratio="xMidYMid meet" style=
"width: 100%; height: 100%; transform: translate3d(0px, 0px, 0px);">
<defs>
<clippath id="__lottie_element_2">
<rect width="20" height="20" x="0" y="0"></rect>
</clippath>
</defs>
<g clip-path="url(#__lottie_element_2)">
<g transform=
"matrix(0.7431448101997375,-0.6691306233406067,0.6691306233406067,0.7431448101997375,-1.298203468322754,9.407886505126953)"
opacity="1" style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,8,8)">
<path fill="rgb(236,95,65)" fill-opacity="1" d=
"M7.215000152587891,-4.933000087738037 C7.244999885559082,-4.960000038146973 7.28000020980835,-4.980999946594238 7.310999870300293,-5.01200008392334 C7.63100004196167,-5.340000152587891 7.790999889373779,-5.770999908447266 7.789000034332275,-6.196000099182129 C7.785999774932861,-6.626999855041504 7.617000102996826,-7.060999870300293 7.283999919891357,-7.38700008392334 C6.955999851226807,-7.708000183105469 6.526000022888184,-7.868000030517578 6.10099983215332,-7.866000175476074 C5.669000148773193,-7.86299991607666 5.236000061035156,-7.693999767303467 4.909999847412109,-7.361000061035156 C4.88100004196167,-7.329999923706055 4.860000133514404,-7.295000076293945 4.833000183105469,-7.26200008392334 C4.020999908447266,-7.743000030517578 3.125,-8 2.242000102996826,-7.994999885559082 C1.121999979019165,-7.988999843597412 0.027000000700354576,-7.578999996185303 -0.7829999923706055,-6.75 C-0.7829999923706055,-6.75 -2.7119998931884766,-4.776000022888184 -2.7119998931884766,-4.776000022888184 C-2.7119998931884766,-4.776000022888184 -2.7130000591278076,-4.775000095367432 -2.7130000591278076,-4.775000095367432 C-2.8359999656677246,-4.6479997634887695 -2.930000066757202,-4.520999908447266 -3.0169999599456787,-4.3979997634887695 C-3.0169999599456787,-4.3979997634887695 -7.664999961853027,-3.950000047683716 -7.664999961853027,-3.950000047683716 C-7.809999942779541,-3.936000108718872 -7.934000015258789,-3.8410000801086426 -7.982999801635742,-3.7019999027252197 C-8.031000137329102,-3.565000057220459 -7.994999885559082,-3.4110000133514404 -7.892000198364258,-3.309000015258789 C-7.892000198364258,-3.309000015258789 -3.821000099182129,0.675000011920929 -3.821000099182129,0.675000011920929 C-3.878999948501587,0.7239999771118164 -3.941999912261963,0.7670000195503235 -3.996999979019165,0.8230000138282776 C-4.442999839782715,1.2790000438690186 -4.664999961853027,1.8760000467300415 -4.660999774932861,2.4679999351501465 C-4.6579999923706055,3.066999912261963 -4.421999931335449,3.6679999828338623 -3.9600000381469727,4.119999885559082 C-3.503999948501587,4.565999984741211 -2.9089999198913574,4.788000106811523 -2.318000078201294,4.783999919891357 C-1.718999981880188,4.781000137329102 -1.1180000305175781,4.545000076293945 -0.6660000085830688,4.081999778747559 C-0.6119999885559082,4.0279998779296875 -0.5709999799728394,3.9639999866485596 -0.5220000147819519,3.9040000438690186 C-0.5220000147819519,3.9040000438690186 3.546999931335449,7.888000011444092 3.546999931335449,7.888000011444092 C3.6500000953674316,7.989999771118164 3.805999994277954,8.02299976348877 3.941999912261963,7.9710001945495605 C4.078000068664551,7.919000148773193 4.172999858856201,7.793000221252441 4.184000015258789,7.64900016784668 C4.184000015258789,7.64900016784668 4.5269999504089355,2.98799991607666 4.5269999504089355,2.98799991607666 C4.6479997634887695,2.8989999294281006 4.7729997634887695,2.8010001182556152 4.8979997634887695,2.6730000972747803 C4.8979997634887695,2.6730000972747803 6.826000213623047,0.6990000009536743 6.826000213623047,0.6990000009536743 C7.626999855041504,-0.11800000071525574 8.01200008392334,-1.2039999961853027 8.003999710083008,-2.309999942779541 C7.998000144958496,-3.2070000171661377 7.7210001945495605,-4.116000175476074 7.215000152587891,-4.933000087738037z M5.442999839782715,-6.831999778747559 C5.446000099182129,-6.833000183105469 5.446000099182129,-6.835000038146973 5.447999954223633,-6.836999893188477 C5.629000186920166,-7.020999908447266 5.864999771118164,-7.113999843597412 6.105000019073486,-7.116000175476074 C6.3420000076293945,-7.117000102996826 6.576000213623047,-7.03000020980835 6.760000228881836,-6.849999904632568 C6.945000171661377,-6.669000148773193 7.0370001792907715,-6.432000160217285 7.039000034332275,-6.191999912261963 C7.039999961853027,-5.953000068664551 6.953000068664551,-5.71999979019165 6.7729997634887695,-5.535999774932861 C6.771999835968018,-5.534999847412109 6.769999980926514,-5.533999919891357 6.769000053405762,-5.5329999923706055 C6.6519999504089355,-5.672999858856201 6.551000118255615,-5.821000099182129 6.418000221252441,-5.952000141143799 C6.418000221252441,-5.952000141143799 5.870999813079834,-6.488999843597412 5.870999813079834,-6.488999843597412 C5.736999988555908,-6.618000030517578 5.586999893188477,-6.7170000076293945 5.442999839782715,-6.831999778747559z M-1.2029999494552612,3.559000015258789 C-1.5110000371932983,3.872999906539917 -1.9149999618530273,4.0320000648498535 -2.322999954223633,4.033999919891357 C-2.7249999046325684,4.0370001792907715 -3.125,3.888000011444092 -3.436000108718872,3.5829999446868896 C-3.436000108718872,3.5829999446868896 -3.447999954223633,3.572000026702881 -3.447999954223633,3.572000026702881 C-3.447999954223633,3.572000026702881 -3.437000036239624,3.5829999446868896 -3.437000036239624,3.5829999446868896 C-3.750999927520752,3.2760000228881836 -3.9079999923706055,2.871000051498413 -3.9110000133514404,2.4630000591278076 C-3.9130001068115234,2.059999942779541 -3.765000104904175,1.6579999923706055 -3.4600000381469727,1.347000002861023 C-3.4059998989105225,1.2910000085830688 -3.3450000286102295,1.246999979019165 -3.2850000858306885,1.2000000476837158 C-3.2850000858306885,1.2000000476837158 -1.059000015258789,3.378999948501587 -1.059000015258789,3.378999948501587 C-1.1039999723434448,3.441999912261963 -1.1469999551773071,3.502000093460083 -1.2029999494552612,3.559000015258789z M6.289999961853027,0.17499999701976776 C6.289999961853027,0.17499999701976776 4.361000061035156,2.1500000953674316 4.361000061035156,2.1500000953674316 C4.249000072479248,2.265000104904175 4.10699987411499,2.368000030517578 3.944000005722046,2.48799991607666 C3.8550000190734863,2.552000045776367 3.799999952316284,2.6530001163482666 3.7909998893737793,2.76200008392334 C3.7909998893737793,2.76200008392334 3.494999885559082,6.7870001792907715 3.494999885559082,6.7870001792907715 C3.494999885559082,6.7870001792907715 -6.790999889373779,-3.2809998989105225 -6.790999889373779,-3.2809998989105225 C-6.790999889373779,-3.2809998989105225 -2.7760000228881836,-3.6670000553131104 -2.7760000228881836,-3.6670000553131104 C-2.6659998893737793,-3.678999900817871 -2.565999984741211,-3.736999988555908 -2.503999948501587,-3.8269999027252197 C-2.3889999389648438,-3.992000102996826 -2.2890000343322754,-4.13700008392334 -2.174999952316284,-4.251999855041504 C-2.174999952316284,-4.251999855041504 -2.174999952316284,-4.250999927520752 -2.174999952316284,-4.250999927520752 C-2.174999952316284,-4.250999927520752 -0.24699999392032623,-6.224999904632568 -0.24699999392032623,-6.224999904632568 C0.41200000047683716,-6.900000095367432 1.3029999732971191,-7.23799991607666 2.246999979019165,-7.244999885559082 C3.322999954223633,-7.251999855041504 4.460000038146973,-6.820000171661377 5.3460001945495605,-5.952000141143799 C5.3460001945495605,-5.952000141143799 5.894000053405762,-5.414999961853027 5.894000053405762,-5.414999961853027 C6.789999961853027,-4.538000106811523 7.248000144958496,-3.3940000534057617 7.254000186920166,-2.305999994277954 C7.260000228881836,-1.3739999532699585 6.940000057220459,-0.49000000953674316 6.289999961853027,0.17499999701976776z">
</path>
</g>
</g>
</g>
</svg></button></div>
<button id="AlertButton" class=
"Button Button-sm Button-secondary">Get alerts</button></div>
</div>
</section>
<div class="FilterModalController">
<div class="Modal-overlay Modal-nav-offset"></div>
<div class="Modal-container FilterModalController-AllFilters">
<div class="AdvancedFilter">
<div class="styles__Container-wtwxzo-0 fFElfG" style=
"margin: auto;">
<div class="styles__Row-sc-1k1rhh7-0 icqxiy">
<div class="styles__Row-sc-1k1rhh7-0 icqxiy">
<div class="PriceSliderAndHistogram"><label id=
"price-range-filter-label" class="Label">Price range</label>
<div class="PriceSliderAndHistogram-histogram-cont">
<div class="PriceSliderAndHistogram-median-line" style=
"left: 207.36px;"></div>
<div class="PriceSliderAndHistogram-median" style=
"left: 165.36px;">Median: $3,200</div>
<div class="PriceSliderAndHistogram-histogram">
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 2%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 3%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 3%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 4%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 4%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 8%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 11%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 11%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 23%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 25%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 36%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 35%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 41%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 52%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 30%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 45%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 51%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 57%;"></div>
<div class=
"PriceSliderAndHistogram-bar PriceSliderAndHistogram-bar-teal"
style="height: 75%;"></div>
<div class="PriceSliderAndHistogram-bar" style="height: 79%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 85%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 78%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 74%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 100%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 63%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 68%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 75%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 68%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 62%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 84%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 68%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 57%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 62%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 76%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 42%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 48%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 55%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 37%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 33%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 47%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 24%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 28%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 21%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 43%;">
</div>
<div class="PriceSliderAndHistogram-bar" style="height: 0%;"></div>
</div>
</div>
<div class="RangeSlider">
<div class="RangeSlider-wrapper" aria-hidden="true">
<div class="RangeSlider-fill" style=
"left: 14.3569%; right: 56.9292%;"></div>
<div class="RangeSlider-outline"></div>
<div role="slider" aria-label="minimum dollars" aria-valuenow="800"
aria-valuetext="800 dollars" aria-valuemin="0" aria-valuemax="5000"
class="RangeSlider-min RangeSlider-cursor" tabindex="0" style=
"left: 14.3569%;">||</div>
<div role="slider" aria-label="maximum dollars" aria-valuenow=
"2400" aria-valuetext="2400 dollars" aria-valuemin="0"
aria-valuemax="5000" class="RangeSlider-max RangeSlider-cursor"
tabindex="0" style="left: 43.0708%;">||</div>
</div>