Aruodas.lt Data Parser & API
Aruodas.lt is Lithuania’s real-estate leader — part of the LSE-listed Baltic Classifieds Group — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Because Aruodas shares a corporate parent (and schema patterns) with City24, one Baltic Classifieds Group integration spans Lithuania, Latvia and Estonia.
| Country | Lithuania |
|---|---|
| Type | Portal |
| Owner | Baltic Classifieds Group |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | LT RE leader |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.aruodas.lt |
Platform Overview
Market Position
Aruodas.lt is the real-estate leader in Lithuania, the dedicated RE vertical of the Baltic Classifieds Group (BCG) — an LSE-listed operator whose H1-2026 real-estate revenue reached €13.2M, up 20% YoY. BCG runs the Baltics’ consolidated RE verticals under one corporate parent, so its listings are well-structured and share schema patterns across markets.
Baltic Classifieds Group cluster
Aruodas.lt (Lithuania) shares its parent — and listing schema patterns — with City24 (Latvia/Estonia) and KV.ee (Estonia). A single PropAPIS integration therefore covers the Baltic Classifieds Group family across Lithuania, Latvia and Estonia, with the same field model carrying across all three markets.
Coverage
- Lithuania (Vilnius, Kaunas, Klaipėda and major cities)
- New-build (primary market), resale, long-term rental, commercial
- Land
- Agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data Aruodas.lt exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Area (m²)
- Rooms: number of rooms
- Floor and total floors
- Building year
- Property type
Listing Details
- Description: full listing text
- Photos: image URLs
- Geo: latitude and longitude
- Listing type: sale, rental, new-build, commercial
Agency Information
- 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 Aruodas.lt listing by URL
listing = api.platforms.aruodas.get_listing(
url='https://www.aruodas.lt/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")
print(f"City: {listing.city}")Search Listings
# Search Aruodas.lt listings
results = api.platforms.aruodas.search(
city='Vilnius',
listing_type='sale',
min_price=80000,
max_price=300000,
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.aruodas.get_listing(
url='https://www.aruodas.lt/...'
)
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.aruodas.getListing({
url: 'https://www.aruodas.lt/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/aruodas/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.aruodas.lt/..."