Point2 Data Parser & API
Point2 (Point2Homes) is a Yardi-owned US and Canada real estate portal carrying syndicated for-sale, rental, and commercial listings — and PropAPIS extracts its prices, agent details, and geo through a single REST API. Access syndicated cross-market listings spanning residential and commercial without building or maintaining a scraper.
Point2 is owned by Yardi, so PropAPIS’s Yardi-cluster coverage reaches Point2 alongside CommercialCafe under a shared corporate data stack.
| Country | United States |
|---|---|
| Type | Aggregator |
| Owner | Yardi |
| Listing types | resale, rental, commercial |
| Monthly visits | ~low-millions / mo |
| Active listings | ~syndicated listings |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.point2homes.com |
Platform Overview
Point2 (Point2Homes) is a US/Canada real estate portal and aggregator owned by Yardi, drawing low-millions of monthly visits (SimilarWeb — point2homes.com ). It carries syndicated listings across resale, rental, and commercial categories, sharing infrastructure with other Yardi portals.
Market Coverage
Geographic Coverage:
- US and Canada across major metros
- Resale, rental and commercial listings
Property Types:
- Single-family homes, condos and townhouses
- Rentals and multi-family
- Commercial and land (syndicated)
Data Availability
Point2 exposes syndicated listing fields — price, beds, baths, sqft, property type, listing type, agent, and brokerage — across residential and commercial categories, sharing the Yardi data stack with CommercialCafe.
Data Fields Available
PropAPIS extracts the full listing field set from each Point2 record:
Property Basics
- Address: Full property address (real-time)
- Price: Current listing price or rent (real-time)
- Bedrooms: Number of bedrooms (real-time)
- Bathrooms: Number of bathrooms (real-time)
- Square Footage: Interior square footage (real-time)
- Property Type: House, condo, commercial, land (static)
Listing Detail
- Listing Type: For sale, for rent, commercial (real-time)
- Agent: Listing agent name and contact (real-time)
- Brokerage: Listing brokerage (real-time)
- Status: Active, pending, sold (real-time)
Media & Location
- Photos: Listing imagery
- Coordinates: Latitude and longitude
API Endpoints
PropAPIS exposes Point2 listing data through search and detail endpoints under api.platforms.point2. Use search_listings to query by location, listing type, and criteria, and get_listing for the full property record.
Quick Start
Extract Point2 listings with the PropAPIS SDKs or a direct REST call.
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search listings
listings = api.platforms.point2.search_listings(
location='Calgary, AB',
listing_type='for_sale',
min_beds=2,
max_price=800000,
)
for listing in listings[:5]:
print(f"{listing.address} — ${listing.price:,}")
print(f" {listing.beds}bd / {listing.baths}ba {listing.property_type}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listings = await api.platforms.point2.searchListings({
location: 'Calgary, AB',
listingType: 'for_sale',
minBeds: 2,
maxPrice: 800000,
});
for (const listing of listings.slice(0, 5)) {
console.log(`${listing.address} — $${listing.price.toLocaleString()}`);
}curl "https://api.propapis.com/v1/platforms/point2/listings" \
-H "Authorization: Bearer your_api_key" \
-G \
--data-urlencode "location=Calgary, AB" \
--data-urlencode "listing_type=for_sale" \
--data-urlencode "min_beds=2" \
--data-urlencode "max_price=800000"