5.468% (5.471%APR)
30-Year Fixed *See Discaimer
Download Actual Estimate (.pdf)
5.595%(5.598%APR)
30-Year Fixed Cash Out
Download Actual Estimate (.pdf)
5.576%(5.787%APR)
30-Year Fixed VA Purchase
Download Actual Estimate (.pdf)
Previous slide
Next slide

Disclaimer

This is not a guarantee that you qualify for a loan. The terms quoted for 30 and 15 year fixed are based off of a rate and term refinance at 60% LTV, a loan amount of $300,000 and a credit score of 740.  Jumbo 30 year fixed is based off of rate and term refinance at 60% LTV, a loan amount of $800,000 and  a credit score of 740.  Home Possible program based off of purchase at 97% LTV and a credit score of 740(income restrictions).  VA Purchase rate based on $300,000 purchase price with VA funding fee, credit score of 660. We do not have your full financial picture. Your actual payment could be higher. Get an actual loan estimate to verify numbers. Rate Quote is from 09/16/2022 at 4:01pm and is subject to change at any time based off of the market.

import requests from bs4 import BeautifulSoup# Send a GET request to the website response = requests.get("https://www.pfloans.com")# Parse the HTML content using BeautifulSoup soup = BeautifulSoup(response.content, "html.parser")# Find the mortgage rate table on the page rate_table = soup.find("table", {"class": "rates-table"})# Find all rows in the table except the header row rows = rate_table.find_all("tr")[1:]# Loop through each row and extract the rate and cost/credit information for row in rows: columns = row.find_all("td") rate = columns[0].get_text().strip() cost_credit = columns[1].get_text().strip() print(f"Rate: {rate} | Cost/Credit: {cost_credit}")