Homeless.co.il Data Parser & API
Homeless.co.il is an established Israeli property portal — resale, rental and commercial listings nationwide — and PropAPIS extracts its listings, agent and location data through a single REST API. It is part of Israel’s long-tail of dedicated portals alongside market leaders Yad2 and Madlan, giving broader coverage of Israeli inventory.
| Country | Israel |
|---|---|
| Type | Portal |
| Owner | Homeless.co.il |
| Listing types | resale, rental, commercial |
| Monthly visits | Medium |
| Active listings | Medium |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.homeless.co.il |
Platform Overview
Market Position
- Established Israeli property portal in the market’s long tail alongside Yad2, Madlan, WinWin and others (per the MENA & Africa research report)
- Covers resale, rental and commercial nationwide
- No official API; medium anti-bot difficulty (per the MENA & Africa research report)
- Complements the Yad2 (listing volume) and Madlan (analytics) leaders for fuller Israeli coverage
Market Coverage
Geographic Coverage:
- Tel Aviv and Gush Dan
- Jerusalem
- Haifa and the North
- Be’er Sheva and the South
Property Types:
- Apartments (Dira) and Garden apartments
- Penthouses and Duplexes
- Private and Semi-detached houses
- Commercial (offices, stores)
Data Availability
Unlike the Gulf — where off-plan / new-build is the dominant, richest segment — the Israeli market centers on resale and rental of apartments. Homeless.co.il surfaces these with room counts, floor and area data typical of the Israeli portal format (per the MENA & Africa research report).
Listing Categories:
- Buy: Resale and ready apartments and houses
- Rent: Long-term rentals
- Commercial: Offices and stores
- New Projects where listed
Data Fields Available
PropAPIS extracts structured data from each Homeless.co.il listing:
Property Information
- Address: Street, neighborhood and city
- Price: Sale price or rent (ILS)
- Rooms: Room count (Israeli convention)
- Bathrooms
- Property Type: Apartment, penthouse, house
- Area: Built-up size (sq m)
- Floor: Floor number and total floors
Listing Details
- Description: Full listing text
- Amenities: Elevator, parking, balcony, safe room
- Photos: Image URLs
- Added Date
Agent Information
- Agency: Agency name
- Agent: Listing agent name or private seller
- Agent Contact: Phone where published
Location Data
- Neighborhood and Street
- City
- Coordinates: Latitude and longitude where shown
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a listing by URL or ID
property_data = api.platforms.homeless.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ILS {property_data.price:,}")
print(f"Rooms: {property_data.rooms}")
print(f"City: {property_data.city}")Search Listings
# Search Homeless.co.il listings
listings = api.platforms.homeless.search(
city='Tel Aviv',
purpose='for-sale',
min_rooms=3,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - ILS {listing.price:,}")
print(f" {listing.rooms} rooms | {listing.neighborhood}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Homeless.co.il listings in Tel Aviv
listings = api.platforms.homeless.search(city='Tel Aviv', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - ILS {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Homeless.co.il listings in Tel Aviv
const listings = await api.platforms.homeless.search({
city: 'Tel Aviv',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ILS ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/homeless/search?city=Tel%20Aviv&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"