Skip to content
×
Try PRO Free Today!
BiggerPockets Pro offers you a comprehensive suite of tools and resources
Market and Deal Finder Tools
Deal Analysis Calculators
Property Management Software
Exclusive discounts to Home Depot, RentRedi, and more
$0
7 days free
$828/yr or $69/mo when billed monthly.
$390/yr or $32.5/mo when billed annually.
7 days free. Cancel anytime.
Already a Pro Member? Sign in here
Pick markets, find deals, analyze and manage properties. Try BiggerPockets PRO.
x
Results (10,000+)
Brad Kremer How to access equity for HELOC on MFR duplex in TX?
27 January 2025 | 3 replies
Hi Dominic, thanks for the detailed response.
Lindsey Waltz 85% ltv DSCR
29 January 2025 | 7 replies
Here's a bit more in detail about how rates are calculated for DSCR loans:1.
Trevor Scheumann Evictions in North Carolina
7 February 2025 | 11 replies
I will reach out to try and figure out details and the procedure.
Kyle Lipko Excited to Learn and Grow in Real Estate Investing!
5 February 2025 | 7 replies
Verifying last 2 years of rental history and income extremely important to find the “best of the worst”.Make sure you understand the Class of properties you are looking at and the corresponding results to expect.The City of Detroit has 183 Neighborhoods we’ve analyzed.DM us if you’d like to discuss this logical approach in greater detail!
William Weston Business names and LLC's
12 February 2025 | 4 replies
Hey guys thank you so much for your responses I truly appreciate the time you took to respond with such great detail.
Bruce Yi Applicant with eviction
12 February 2025 | 14 replies
Do your due diligence, ask the creditors or evicting entity the details of the eviction, how much was due, why did it happen, and was the amount owed satisfied?
Rosmery Then Seeking Advice and Contractor Recommendations for a Fort Lauderdale Multifamily Conve
23 January 2025 | 8 replies
A good designer and architect are key for a successful project like this and keep in mind these aren't cheap.There's a lot more details to consider, feel free to DM me for more details.
Venka Pulla How to deal with Bad property manager
11 January 2025 | 7 replies
Provide clear instructions on where and how to pay to avoid confusion.Recover Security Deposits: The current property manager is legally obligated to transfer tenant security deposits to you or the new management company.
Tom E. Tracking Software For Material Participation (Taxes)
11 February 2025 | 10 replies
Be detailed—track start and end times to clearly show your involvement.Task Descriptions – Be specific about what you did.
Austin Bright I have a list of addresses. Is there some "Tech-y" way pull property info in bulk?
10 February 2025 | 47 replies
location={lat},{lng}" headers = {'User-Agent': 'Mozilla/5.0'} response = requests.get(search_url, headers=headers) if response.status_code == 200: try: json_text = response.text.split('&&')[1] return json.loads(json_text) except (json.JSONDecodeError, IndexError) as e: print("Error decoding JSON response:", e) print("Response text:", response.text) return None return Nonedef extract_home_id(search_results): try: payload = search_results.get('payload') if not payload: return None region_views = payload.get('regionViews') if not region_views: return None root = region_views.get('__root') if not root: return None for result in root: if 'home' in result: return result['home']['id'] except KeyError as e: print(f"KeyError: {e}") return Nonedef construct_redfin_detail_url(state, city, street, zip_code, home_id): street_formatted = street.replace(' ', '-') city_formatted = city.replace(' ', '-') return f"https://www.redfin.com/{state}/{city_formatted}/{street_formatted}/home/{home_id}"def query_apify_redfin_scraper(detail_url): api_url = APIFY_API_URL payload = { "detailUrls": [{"url": detail_url}], "debugLog": False } headers = { "Content-Type": "application/json" } response = requests.post(api_url, headers=headers, data=json.dumps(payload)) if response.status_code == 201: try: return response.json()['data']['id'] except json.JSONDecodeError as e: print("Error decoding JSON response:", e) print("Response text:", response.text) return None return Nonedef get_apify_scraper_results(run_id): api_url = f"https://api.apify.com/v2/acts/tri_angle~redfin-detail/runs/{run_id}/dataset/items?