REIDIN Data Parser & API
REIDIN is a leading B2B real-estate data and index provider for the UAE and wider MENA region — publishing price indices, transaction records and valuations rather than consumer listings — and PropAPIS extracts its index and transaction data through a single REST API. It is the region’s reference benchmark provider, used by banks, funds and developers for residential and commercial price analytics.
| Country | United Arab Emirates |
|---|---|
| Type | Aggregator |
| Owner | REIDIN |
| Listing types | sold, price-index, valuations |
| Monthly visits | Low (B2B subscription) |
| Active listings | Index / transaction data |
| API access | Partial / limited API |
| Parse priority | ★★★☆☆ |
| Official site | reidin.com |
Platform Overview
Market Position
- B2B / subscription data provider — the region’s reference price-index house, not a consumer portal (per the MENA & Africa research report)
- Publishes the REIDIN UAE Residential Property Price Report and index series (REIDIN UAE Residential Price Report, Sep 2025)
- Auth-gated, high-difficulty access — data sits behind subscription login, unlike open consumer portals
- Index and transaction data spans residential and commercial across the UAE and broader MENA
Market Coverage
Geographic Coverage:
- Dubai and Abu Dhabi: Full residential and commercial coverage
- Wider UAE emirates
- Selected MENA markets via REIDIN’s regional index series
Data Types:
- Residential price indices (sale and rent)
- Commercial price and yield series
- Transaction / sold records
- Automated valuations and benchmarks
Data Availability
In the Gulf, off-plan / new-build is the dominant and richest listing segment, but REIDIN’s value is on the analytics side: price indices, sold-transaction records and valuations that underpin off-plan and resale pricing decisions. This is premium, hard-to-source data versus a standard consumer portal (per the MENA & Africa research report).
Listing Categories:
- Price Index: Residential and commercial index series
- Transactions: Sold / registered transaction records
- Valuations: AVM-style benchmarks and estimates
- Trends: Price-per-sqft and yield trends by area
Data Fields Available
PropAPIS extracts structured data from REIDIN’s datasets:
Index & Trend Data
- Price Index: Residential and commercial index values
- Trend: Period-over-period change
- Price per sqft / sqm by community
- Date: Reporting period
Transaction Data
- Sold Price: Registered transaction value
- Property Type: Apartment, villa, office, retail
- Area: Built-up / plot size
- Community: Area / district
- Date: Transaction / registration date
Valuation Data
- Valuation: Benchmark / estimated value
- Comparable evidence where shown
Location Data
- Community and Sub-community
- Emirate / City
API Endpoints
Get Price Index
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a REIDIN price index series
index = api.platforms.reidin.get_index(
city='Dubai',
segment='residential'
)
print(f"Index: {index.value}")
print(f"Period: {index.period}")
print(f"Change: {index.change}%")Search Transactions
# Search REIDIN transaction records
transactions = api.platforms.reidin.search_transactions(
city='Dubai',
community='Dubai Marina',
property_type='Apartment'
)
for txn in transactions[:10]:
print(f"{txn.community} - AED {txn.sold_price:,}")
print(f" {txn.area} sqft | {txn.date}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get REIDIN residential index for Dubai
index = api.platforms.reidin.get_index(city='Dubai', segment='residential')
print(f"Index: {index.value} ({index.change}%)")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Get REIDIN residential index for Dubai
const index = await api.platforms.reidin.getIndex({
city: 'Dubai',
segment: 'residential',
});
console.log(`Index: ${index.value} (${index.change}%)`);curl "https://api.propapis.com/v1/platforms/reidin/index?city=Dubai&segment=residential" \
-H "Authorization: Bearer your_api_key"