MyHome.ie Data Parser & API
MyHome.ie is Ireland’s #2 property portal — drawing roughly ~0.7M monthly visits with strong premium-agent coverage — and PropAPIS extracts its resale, rental, and new-build listings through a single REST API. Owned by The Irish Times, MyHome.ie is the main alternative to Daft.ie and publishes a widely cited quarterly property price report, exposing price, size, BER rating, and agent data.
| Country | Ireland |
|---|---|
| Type | Portal |
| Owner | The Irish Times |
| Listing types | resale, rental, new-build |
| Monthly visits | ~0.7M / mo (Apr 2026) |
| Active listings | — (premium agents) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.myhome.ie |
Platform Overview
Market Position
MyHome.ie is owned by The Irish Times and sits second in Ireland’s two-portal market behind Daft.ie. It carries strong coverage of premium estate agents and drew roughly ~0.7M monthly visits in April 2026. MyHome.ie also publishes a closely followed quarterly property report used as a market benchmark (MyHome.ie Q3 2025 Report ).
- Ireland’s #2 Portal: Main alternative to Daft.ie
- Premium-Agent Coverage: Strong agency representation
- ~0.7M Monthly Visits (Apr 2026): Focused Irish audience
- Low Anti-Bot: One of the more accessible portals to parse
Market Coverage
Geographic Coverage:
- Ireland: All counties nationwide
- Major cities: Dublin, Cork, Galway, Limerick, Waterford
- Commuter belt and regional towns
Property Types:
- Houses (detached, semi-detached, terraced)
- Apartments
- New-build developments
- Sites and land
Data Fields Available
PropAPIS extracts a rich field set from each MyHome.ie listing:
Property Information
- Address: Property location with Eircode where available
- Price: Asking price or rent (EUR)
- Size: Floor area in square meters
- Bedrooms: Number of bedrooms
- Bathrooms: Number of bathrooms
- Property Type: House, apartment, new-build, site
- Price per m²: Calculated price per square meter
Listing Details
- Description: Full property description (English)
- Features: Amenities and equipment
- Photos: Image URLs
- BER Rating: Building Energy Rating (mandatory Irish energy label)
Agent Information
- Estate Agent: Agency name
- Agent Contact: Office contact details
- Agent Reference: Listing reference number
Location Data
- Eircode: Irish postal code where published
- County and Town: Administrative location
- Coordinates: Latitude and longitude
Financial Information
- Price per m²: Value benchmark
- BER context: Energy-rating impact on value
- Local Property Tax context: LPT considerations
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get property by ID or URL
property_data = api.platforms.myhome_ie.get_property(
listing_id='4567890'
)
print(f"Address: {property_data.address}")
print(f"Price: €{property_data.price:,}")
print(f"Size: {property_data.size_m2} m²")
print(f"Bedrooms: {property_data.bedrooms}")
print(f"BER Rating: {property_data.ber_rating}")Search For Sale Listings
# Search properties for sale
listings = api.platforms.myhome_ie.search_for_sale(
location='Dublin',
min_price=300000,
max_price=650000,
min_bedrooms=2,
property_type='House'
)
for listing in listings[:10]:
print(f"{listing.address} - €{listing.price:,}")
print(f" {listing.bedrooms} bed | {listing.size_m2} m² | BER {listing.ber_rating}")Search Rental Properties
# Search rental properties
rentals = api.platforms.myhome_ie.search_to_rent(
location='Cork',
min_price=1200, # monthly rent
max_price=2500,
min_bedrooms=2
)
for rental in rentals[:5]:
print(f"{rental.address} - €{rental.price:,}/mo")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.myhome_ie.get_property('4567890')
print(f"Price: €{property_data.price:,}")
print(f"Size: {property_data.size_m2} m²")
print(f"BER Rating: {property_data.ber_rating}")For detailed documentation, see our API Reference.