PropertyPro.ng Data Parser & API
PropertyPro.ng is one of Nigeria’s top-2 property portals — resale, rental, commercial and land listings with strong land and commercial segments — and PropAPIS extracts its listings, agent profiles and project data through a single REST API. Part of the pan-African PropertyPro Africa Group (also Kenya, Zimbabwe and Uganda), it has light anti-bot protection — among the best effort-to-coverage in Sub-Saharan Africa.
| Country | Nigeria |
|---|---|
| Type | Portal |
| Owner | PropertyPro Africa Group |
| Listing types | resale, rental, commercial, land |
| Monthly visits | High (top-2 Nigeria) |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.propertypro.ng |
Platform Overview
Market Position
- One of Nigeria’s top-2 property portals, alongside Nigeria Property Centre
- Part of the PropertyPro Africa Group, which also operates in Kenya, Zimbabwe and Uganda — one parser family spans multiple African markets
- Organic-search-driven with low / light anti-bot protection — best effort-to-coverage in Sub-Saharan Africa (per the MENA & Africa research report)
- Strong land and commercial segments alongside residential
Market Coverage
Geographic Coverage:
- Lagos: All districts (Lekki, Ikoyi, Victoria Island, mainland)
- Abuja (FCT)
- Port Harcourt and Rivers
- Ibadan 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. PropertyPro.ng surfaces these alongside residential resale and rental, with light anti-bot protection making it a high-yield Sub-Saharan 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 PropertyPro.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.propertypro_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 PropertyPro.ng listings
listings = api.platforms.propertypro_ng.search(
city='Lagos',
purpose='for-sale',
min_price=20000000,
max_price=150000000,
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 PropertyPro.ng listings in Lagos
listings = api.platforms.propertypro_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 PropertyPro.ng listings in Lagos
const listings = await api.platforms.propertyproNg.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/propertypro-ng/search?city=Lagos&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"