Nekretnine.rs Data Parser & API
Nekretnine.rs is Serbia’s historic real-estate portal — once the market leader, now ~0.3-1M monthly visits and declining — and PropAPIS extracts its resale, rental and commercial listings through a single REST API. Its low anti-bot difficulty keeps it an easy extraction target for Serbian coverage.
| Country | Serbia |
|---|---|
| Type | Portal |
| Owner | Nekretnine.rs |
| Listing types | resale, rental, commercial |
| Monthly visits | ~0.3-1M / mo (declining) |
| Active listings | Historic leader, declining |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.nekretnine.rs |
Platform Overview
Market Position
Nekretnine.rs is the historic leader of the Serbian real-estate market, now drawing ~0.3-1M monthly visits and declining sharply through 2025-26 (SimilarWeb, Jul 2025) as traffic shifts to Halooglasi (~3.2M/mo) and the RE-dedicated 4zida (~1.7M/mo). It retains a long-standing inventory of resale, rental and commercial listings, and its low anti-bot difficulty makes it a straightforward extraction target.
Coverage
- Serbia (Belgrade, Novi Sad and major cities)
- Resale and long-term rental
- Commercial property
- Agent and agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data Nekretnine.rs exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Area (m²)
- Rooms: number of rooms
- Floor and total floors
- Property type
Listing Details
- Description: full listing text
- Photos: image URLs
- Geo: latitude and longitude
- Listing type: sale, rental, commercial
Agent Information
- Agent name
- Agency name
- Contact details (where exposed)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a single Nekretnine.rs listing by URL
listing = api.platforms.nekretnine_rs.get_listing(
url='https://www.nekretnine.rs/stambeni-objekti/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")Search Listings
# Search Nekretnine.rs listings
results = api.platforms.nekretnine_rs.search(
city='Beograd',
listing_type='sale',
min_price=50000,
max_price=250000,
min_rooms=2,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} EUR ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.nekretnine_rs.get_listing(
url='https://www.nekretnine.rs/stambeni-objekti/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listing = await api.platforms.nekretnineRs.getListing({
url: 'https://www.nekretnine.rs/stambeni-objekti/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/nekretnine-rs/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.nekretnine.rs/stambeni-objekti/..."