Private Property NG Data Parser & API
Private Property NG is a major Nigerian property portal — resale, rental, commercial and land listings nationwide — and PropAPIS extracts its listings, agent and location data through a single REST API. As Nigeria’s third leading portal behind PropertyPro.ng and Nigeria Property Centre, it has light anti-bot protection, making it a high-yield Sub-Saharan target.
| Country | Nigeria |
|---|---|
| Type | Portal |
| Owner | Private Property |
| Listing types | resale, rental, commercial, land |
| Monthly visits | Medium |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.privateproperty.com.ng |
Platform Overview
Market Position
- Nigeria’s third leading property portal behind PropertyPro.ng and Nigeria Property Centre (per the MENA & Africa research report)
- Strong land and commercial segments alongside residential
- Low / light anti-bot protection — among the best effort-to-coverage in Sub-Saharan Africa (per the MENA & Africa research report)
- Featured among Africa’s top property portals (Online Marketplaces — Top Property Portals of Africa)
Market Coverage
Geographic Coverage:
- Lagos: All districts (Lekki, Ikoyi, Victoria Island, mainland)
- Abuja (FCT)
- Port Harcourt and Rivers
- Ibadan, Enugu and wider Nigeria
Property Types:
- Apartments and Flats
- Detached and Semi-detached houses
- Terraced houses and Duplexes
- Commercial (offices, shops)
- Land and Plots
Data Availability
Unlike the Gulf — where off-plan / new-build is the dominant, richest segment — Nigeria’s strength is its land and commercial inventory. Private Property NG surfaces these alongside residential resale and rental, with light anti-bot protection making it a high-yield target (per the MENA & Africa research report).
Listing Categories:
- Buy: Resale and ready properties
- Rent: Long-term and short-let rentals
- Commercial: Offices, shops, warehouses
- Land: Plots and land for sale
Data Fields Available
PropAPIS extracts structured data from each Private Property NG listing:
Property Information
- Address: Area, district and city
- Price: Sale price or rent (NGN)
- Bedrooms and Bathrooms
- Property Type: Flat, duplex, detached, land
- Area: Built-up / plot size (sq m)
- Toilets and Parking where shown
Listing Details
- Description: Full listing text
- Amenities: Facilities and features
- Photos: Image URLs
- Added Date
Agent Information
- Agency: Agency or developer name
- Agent: Listing agent name
- Agent Contact: Phone where published
Location Data
- Area and District
- City / State
- 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.private_property_ng.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: NGN {property_data.price:,}")
print(f"Type: {property_data.property_type}")
print(f"Area: {property_data.area}")Search Listings
# Search Private Property NG listings
listings = api.platforms.private_property_ng.search(
city='Lagos',
purpose='for-sale',
min_bedrooms=3,
property_type='Detached'
)
for listing in listings[:10]:
print(f"{listing.title} - NGN {listing.price:,}")
print(f" {listing.bedrooms} bed | {listing.area}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Private Property NG listings in Lagos
listings = api.platforms.private_property_ng.search(city='Lagos', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - NGN {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Private Property NG listings in Lagos
const listings = await api.platforms.privatePropertyNg.search({
city: 'Lagos',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - NGN ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/private-property-ng/search?city=Lagos&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"