You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The #1 deal source for buy-and-hold investors is MLS listings. Currently prei only has foreclosure data (VRM, HUD, USDA, county). A top investor would say: "You've built a Ferrari engine and put it in a car with no gas."
Solution
Integrate with a RESO Web API compliant MLS data provider (Bridge Interactive, Trestle, or Paragon). Start with one MLS market (DFW/North Texas) as proof of concept. Import active listings matching investor criteria.
Acceptance Criteria
Add MLS_API_KEY, MLS_API_URL, MLS_CLIENT_ID to environment config
Create core/integrations/sources/mls_adapter.py with RESO Web API client
Add MlsListing model: address, city, state, zip, price, beds, baths, sqft, lot_size, year_built, list_date, mls_id, photo_urls, status
Problem
The #1 deal source for buy-and-hold investors is MLS listings. Currently prei only has foreclosure data (VRM, HUD, USDA, county). A top investor would say: "You've built a Ferrari engine and put it in a car with no gas."
Solution
Integrate with a RESO Web API compliant MLS data provider (Bridge Interactive, Trestle, or Paragon). Start with one MLS market (DFW/North Texas) as proof of concept. Import active listings matching investor criteria.
Acceptance Criteria
MLS_API_KEY,MLS_API_URL,MLS_CLIENT_IDto environment configcore/integrations/sources/mls_adapter.pywith RESO Web API clientMlsListingmodel: address, city, state, zip, price, beds, baths, sqft, lot_size, year_built, list_date, mls_id, photo_urls, statuspython manage.py import_mls_listings --market=dallasTechnical Notes
select_for_update()for dedup onmls_idImplementation Guide (for opencode/mimo v2.5)
core/integrations/sources/(see registry.py)MlsListingmodel tocore/models/sources.pyfollowing theHudPropertypatterncore/services/sources/registry.pycore/management/commands/import_mls_listings.pytemplates/property_discovery.html)Dependencies