berkadia.com
Open in
urlscan Pro
15.197.151.70
Public Scan
Submitted URL: http://berkadia.com/
Effective URL: https://berkadia.com/
Submission: On February 16 via manual from IN — Scanned from DE
Effective URL: https://berkadia.com/
Submission: On February 16 via manual from IN — Scanned from DE
Form analysis
1 forms found in the DOMGET https://www.berkadia.com/properties
<form id="landingpage-search-form" action="https://www.berkadia.com/properties" method="GET">
<div class="row gx-0-5">
<div id="dealprofiletype" class="col-12 col-sm-6 col-md-3 m-0">
<select id="dealtype" class="form-control" style="width: 270px; height: 44px; border: 2px solid rgb(138, 147, 161); border-radius: 4px; display: none;" multiple="" name="dealProfileType[]" placeholder="Deal profile">
<option value="Core">Core</option>
<option value="Core Plus">Core Plus</option>
<option value="Opportunistic">Opportunistic</option>
<option value="Value-Add">Value-Add</option>
</select>
<div class="multiselect-dropdown" style="width: 266px;">
<div class="multiselect-dropdown-list-wrapper"><input class="multiselect-dropdown-search form-control" placeholder="search" style="width: 100%; display: none;">
<div class="multiselect-dropdown-list" style="height: 15rem;">
<div><input type="checkbox"><label>Core</label></div>
<div><input type="checkbox"><label>Core Plus</label></div>
<div><input type="checkbox"><label>Opportunistic</label></div>
<div><input type="checkbox"><label>Value-Add</label></div>
</div>
</div><span class="placeholder">Deal profile</span>
</div>
</div>
<div id="property-type" class="col-12 col-sm-6 col-md-3 m-0">
<select id="propertytype" class="form-control" style="width: 270px; height: 44px; border: 2px solid rgb(138, 147, 161); border-radius: 4px; display: none;" multiple="" name="propertyType[]" placeholder="Property type">
<option value="Multifamily Housing">Multifamily Housing</option>
<option value="Affordable Housing">Affordable Housing</option>
<option value="Hotels & Hospitality">Hotels & Hospitality</option>
<option value="Land">Land</option>
<option value="Manufactured Housing">Manufactured Housing</option>
<option value="Mixed-Use">Mixed-Use</option>
<option value="Other">Other</option>
<option value="Seniors Housing & Healthcare">Seniors Housing & Healthcare</option>
<option value="Single-Family Rental & Built-for-Rent">Single-Family Rental & Built-for-Rent</option>
<option value="Student Housing">Student Housing</option>
</select>
<div class="multiselect-dropdown" style="width: 266px;">
<div class="multiselect-dropdown-list-wrapper"><input class="multiselect-dropdown-search form-control" placeholder="search" style="width: 100%; display: none;">
<div class="multiselect-dropdown-list" style="height: 15rem;">
<div><input type="checkbox"><label>Multifamily Housing</label></div>
<div><input type="checkbox"><label>Affordable Housing</label></div>
<div><input type="checkbox"><label>Hotels & Hospitality</label></div>
<div><input type="checkbox"><label>Land</label></div>
<div><input type="checkbox"><label>Manufactured Housing</label></div>
<div><input type="checkbox"><label>Mixed-Use</label></div>
<div><input type="checkbox"><label>Other</label></div>
<div><input type="checkbox"><label>Seniors Housing & Healthcare</label></div>
<div><input type="checkbox"><label>Single-Family Rental & Built-for-Rent</label></div>
<div><input type="checkbox"><label>Student Housing</label></div>
</div>
</div><span class="placeholder">Property type</span>
</div>
</div>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.js"></script>
<div id="locationsearch" class="col-12 col-md-4">
<select id="select5_ajax" name="globalsearch[]" placeholder="Enter property or location" class="selectator" style="display: none;"></select>
<div id="selectator_select5_ajax" class="selectator_element single options-hidden" style="width: 358px; min-height: 42px; padding: 0px 12px; flex-grow: 0; position: relative;"><span class="selectator_textlength"
style="position: absolute; visibility: hidden;"></span>
<div class="selectator_selected_items">
<div class="selectator_placeholder">Enter property or location</div>
</div><input class="selectator_input" placeholder="" autocomplete="false">
<ul class="selectator_options"></ul>
</div>
<input value="activate" id="activate_selectator6_ajax" type="button" style="display:none;">
</div>
<script type="text/javascript">
(function($) {
var message = function(selectedItems) {
$("#dialog-1").empty();
selectedItems?.forEach(element => {
$("#dialog-1").append(`<div class="colorRed">${element}</div>`)
$("#dialog-1").addClass('dialougebox');
});
$("#dialog-1").dialog({
autoOpen: false,
});
$("#dialog-1").dialog("open");
}
var strip_tags = function(str) {
return (str + '').replace(/<\/?[^>]+(>|$)/g, '')
};
var truncate_string = function(str, chars) {
if ($.trim(str).length <= chars) {
return str;
} else {
return $.trim(str.substr(0, chars)) + '…';
}
};
var $mappingNames = {
MetropolitanStateAreaName: 'MSA',
city: 'City',
state: 'State',
dealName: 'Property name',
zipCode: 'Zip code',
region: 'Region',
};
var $activate_selectator = $('#activate_selectator6_ajax');
$activate_selectator.click(function() {
var $select = $('#select5_ajax');
if ($select.data('selectator') === undefined) {
$select.selectator({
showAllOptionsOnFocus: true,
keepOpen: false,
load: function(search, callback) {
if (search.length < this.minSearchLength) return callback();
$.ajax({
url: '/propertySearch/global',
type: 'POST',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
data: JSON.stringify({
"suggestion": {
"text": search
}
}),
success: function(result) {
let tempArr = [];
for (let arr of result.data) {
if (arr.selectedItem === 'region') {
tempArr.push(arr)
} else if ((['city', 'zipCode', 'state'].includes(arr.selectedItem) ? arr.combinedLocation : arr[arr.selectedItem])?.toLowerCase().includes(search.toLowerCase())) {
tempArr.push(arr)
}
}
if (tempArr.length === 0) {
tempArr.push("No Results");
}
callback(tempArr.slice(0, 5));
},
error: function() {
callback();
}
});
},
delay: 500,
minSearchLength: 3,
valueField: 'selectedItem',
textField: 'selectedItem',
render: {
option: function(_item, escape) {
var html = '';
if (typeof _item.selectedItem !== 'undefined') {
html +=
`<div class="selectator_option_title"><span class="icon" ${_item.selectedItem === 'dealName'?'style="padding:0px 8px 0px 12px !important"':''} ><img alt="Pin" class="pin-location" src="https://dotcompropertysearch.qcberk8s.com/assets/icons/${_item.selectedItem === 'dealName'?'Property-small':'Pin-black'}.svg"></span>` +
((typeof _item.selectedItem !== 'undefined') ? (["city", "zipCode", "state"].includes(_item.selectedItem) ? _item.combinedLocation : _item[_item.selectedItem]) : '') + '</div>';
html += '<div class="selectator_option_subtitle">' + ((typeof _item.selectedItem !== 'undefined') ? $mappingNames[_item.selectedItem] : '') + '</div>';
return html;
} else {
html += `<div id="noresults_title" class="selectator_option_title">` + 'No matching Berkadia listings found' + '</div>';
html += '<div id= "noresults_subtitle" class="selectator_option_subtitle">' + 'Check spelling or try another location' + '</div>';
return html;
}
}
}
});
}
});
$activate_selectator.trigger('click');
}(jQuery));
</script>
<div id="landingpagebutton" class="col-12 col-md-2">
<input id="landingpagebtn" class="btn button d-block" type="submit" value="Search">
</div>
</div>
</form>
Text Content
Skip to main content Skip to footer * Newsroom * Careers * US Job Search * India Job Search * Early Careers * Contact * Login * Newsroom * Careers * US Job Search * India Job Search * Early Careers * Contact * Login * Services * Investment Sales * Institutional Solutions * Mortgage Banking * FHA/HUD * JV Equity & Structured Capital * Small Loans * Loan Servicing * Specialties * Affordable Housing * Hotels & Hospitality * Manufactured Housing * Medical & Life Sciences * Multifamily Housing * Seniors Housing & Healthcare * Single-Family Rental & Build-to-Rent * Student Housing * Properties * Insights * Economy * Markets * All Insights * Research * Construction Pipeline Reports * Forecast Reports * Multifamily Reports * About Us * People and Locations * Explore Careers * ESG * Culture * Diversity, Equity, Inclusion & Belonging * Innovation * Services * Investment Sales * Institutional Solutions * Mortgage Banking * FHA/HUD * JV Equity & Structured Capital * Small Loans * Loan Servicing * Specialties * Affordable Housing * Hotels & Hospitality * Manufactured Housing * Medical & Life Sciences * Multifamily Housing * Seniors Housing & Healthcare * Single-Family Rental & Build-to-Rent * Student Housing * Properties * Insights * Economy * Markets * All Insights * Research * Construction Pipeline Reports * Forecast Reports * Multifamily Reports * About Us * People and Locations * Explore Careers * ESG * Culture * Diversity, Equity, Inclusion & Belonging * Innovation * Services * Investment Sales * Institutional Solutions * Mortgage Banking * FHA/HUD * JV Equity & Structured Capital * Small Loans * Loan Servicing * Specialties * Affordable Housing * Hotels & Hospitality * Manufactured Housing * Medical & Life Sciences * Multifamily Housing * Seniors Housing & Healthcare * Single-Family Rental & Build-to-Rent * Student Housing * Properties * Insights * Economy * Markets * All Insights * Research * Construction Pipeline Reports * Forecast Reports * Multifamily Reports * About Us * People and Locations * Explore Careers * ESG * Culture * Diversity, Equity, Inclusion & Belonging * Innovation * Services * Investment Sales * Institutional Solutions * Mortgage Banking * FHA/HUD * JV Equity & Structured Capital * Small Loans * Loan Servicing * Specialties * Affordable Housing * Hotels & Hospitality * Manufactured Housing * Medical & Life Sciences * Multifamily Housing * Seniors Housing & Healthcare * Single-Family Rental & Build-to-Rent * Student Housing * Properties * Insights * Economy * Markets * All Insights * Research * Construction Pipeline Reports * Forecast Reports * Multifamily Reports * About Us * People and Locations * Explore Careers * ESG * Culture * Diversity, Equity, Inclusion & Belonging * Innovation We’re redefining commercial real estate by delivering actionable insights, powered by long-term investments in people and technology. FIND YOUR NEXT INVESTMENT. Explore investment properties across real estate sectors and markets. Core Core Plus Opportunistic Value-Add Core Core Plus Opportunistic Value-Add Deal profile Multifamily Housing Affordable Housing Hotels & Hospitality Land Manufactured Housing Mixed-Use Other Seniors Housing & Healthcare Single-Family Rental & Built-for-Rent Student Housing Multifamily Housing Affordable Housing Hotels & Hospitality Land Manufactured Housing Mixed-Use Other Seniors Housing & Healthcare Single-Family Rental & Built-for-Rent Student Housing Property type Enter property or location CELEBRATING ONE YEAR BERKADIA ALLIANCE WITH KNIGHT FRANK It has been one year since Knight Frank and Berkadia joined forces, creating an international alliance, to provide our clients access to more diverse capital sources and opportunities all around the world. Over the past year, Berkadia has seen and felt the impact of Knight Frank’s resources and capabilities, and we’re excited to continue strengthening our offerings to meet the ever-expanding needs of our clients. Together, we are building the world’s leading living sectors platform. Learn more EXPERTISE FOR EVERY ENDEAVOR INVESTMENT SALES Confidently take your asset to market or strategically grow your commercial real estate portfolio. Buy and Sell Real Estate → MORTAGE BANKING Put the power of the #1 HUD Lender, #1 Freddie Mac Lender and #2 Fannie Mae DUS Lender to work for you. Secure a Loan → LOAN SERVICING As the largest U.S. non-bank commercial mortgage servicer in the industry, we protect investors’ interests in their mortgaged real estate investment portfolio. Service a Loan → #1 Multifamily Lender #1 New Construction Lender #1 Multifamily Affordable Lender #2 Multifamily Refinance Lender #6 Healthcare Lender #1 Multifamily Affordable Housing Lender #2 Green Financing Lender #3 Manufactured Housing Communities Lender #4 Small Loans Lender #1 FREDDIE MAC LENDER #1 HUD LENDER #2 FANNIE MAE DUS LENDER #1 Conventional Lender #1 Facility Products Lender #1 Low-Income Housing Lender #1 Very Low-Income Housing Lender #3 Targeted Affordable Housing Lender #4 Manufactured Housing Communities Lender #5 Small Balance Loans Lender #1 Multifamily Lender #1 New Construction Lender #1 Multifamily Affordable Lender #2 Multifamily Refinance Lender #6 Healthcare Lender #1 Multifamily Affordable Housing Lender #2 Green Financing Lender #3 Manufactured Housing Communities Lender #4 Small Loans Lender #1 FREDDIE MAC LENDER #1 HUD LENDER #2 FANNIE MAE DUS LENDER #1 Conventional Lender #1 Facility Products Lender #1 Low-Income Housing Lender #1 Very Low-Income Housing Lender #3 Targeted Affordable Housing Lender #4 Manufactured Housing Communities Lender #5 Small Balance Loans Lender * * * * TECHNOLOGY SMART INVESTMENTS PAY OFF With a significant, long-term investment in technology and proprietary data gleaned from properties and markets across the country, our unique, fully integrated platform provides actionable insights to guide your real estate investment decisions. Learn More BE BERKADIA DIVERSITY, EQUITY, INCLUSION & BELONGING We are actively investing in our Diversity, Equity, Inclusion, and Belonging (DEIB) program to positively impact and drive change in the commercial real estate industry. Learn More CAREERS WE BELIEVE PEOPLE MATTER In fact, our people are the heart and soul of everything we do here. That’s why we employ the top commercial real estate professionals, and make sure we invest in their personal and professional development. Browse Careers RESEARCH AND INSIGHTS Access the latest market-driven insights and research from Berkadia. Insights Insights from Berlin: 2023 Special Olympics World Games Read More Insights Beyond Insights | Assessing Opportunities in an Oversupplied Multifamily Landscape Read More Insights Backed by the Best: Chris Tresp Read More Insights Berkadia Seniors Housing: First Impressions of 2024’s First Quarter Read More All Research | All Insights PROPERTY ACQUISITION PORTAL Here, you can login or register, and manage your email preferences to ensure you receive only the most relevant investment opportunities, research, and insights. Launch Portal * Services * Investment Sales * Institutional Solutions * Mortgage Banking * FHA/HUD * JV Equity & Structured Capital * Small Loans * Loan Servicing * Specialties * Affordable Housing * Hotels & Hospitality * Manufactured Housing * Medical & Life Sciences * Multifamily Housing * Seniors Housing & Healthcare * Single-Family Rental & Build-to-Rent * Student Housing * Properties * Insights * Economy * Markets * All Insights * Research * Multifamily Reports * Forecast Reports * Construction Pipeline Reports * About Us * People and Locations * Explore Careers * ESG – Environmental Social & Governance * Culture * Diversity, Equity, Inclusion & Belonging * Innovation * Newsroom * Careers * US Job Search * India Job Search * Early Careers * Contact * Login * Privacy Policy * Terms of Use * * * * © 2024 Berkadia Proprietary Holding LLC Berkadia® is a trademark of Berkadia Proprietary Holding LLC. Click here for additional intellectual property information. Commercial mortgage loan origination and servicing businesses are conducted exclusively by Berkadia Commercial Mortgage LLC and Berkadia Commercial Mortgage Inc. This website is not intended to solicit commercial mortgage loan brokerage business in Nevada. Investment sales and real estate brokerage businesses are conducted exclusively by Berkadia Real Estate Advisors LLC and Berkadia Real Estate Advisors Inc. Tax credit syndication business is conducted exclusively by Berkadia Affordable Tax Credit Solutions. For California and all state licensing details for the above entities click here. For business conducted in Texas, see here for: Texas Real Estate Commission Information About Broker Services (Berkadia Commercial Mortgage LLC) and Texas Real Estate Commission Information About Broker Services (Berkadia Real Estate Advisors LLC). Additionally, please see Texas Real Estate Commission Consumer Protection Notice. Close Give Feedback