GET
/get-get-transactions Get historical property get-transactions
Description
Get historical property transaction data (sales and rentals) for a location. Useful for market analysis and price trends.
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
location_id | string | Required | - Location ID from `/autocomplete-location` endpoint - Example: `50` (Dubai Marina), `51` (Downtown Dubai) | 50 |
transaction_type | string | Required | - Type of transaction history to view - `sold`: Properties that were sold - `rented`: Properties that were rented | sold |
property_type | string | Optional | - Filter get-transactions by property type - Common: `apartment`, `villa`, `penthouse` - All options: `apartment`, `villa`, `townhouse`, `penthouse`, `compound`, `duplex`, `full-floor`, `half-floor`, `whole-building`, `bulk-rent-unit`, `bungalow`, `hotel-apartment` | apartment |
bedrooms | string | Optional | - Filter by number of bedrooms - Use `0` for studio apartments - Examples: `0`, `1`, `2`, `3` | 2 |
sort | string | Optional | - Sort get-transactions by - `newest`: Most recent get-transactions first - `oldest`: Oldest get-transactions first - `high_price`: Highest price first - `low_price`: Lowest price first - Default: `newest` | newest |
period | string | Optional | - Time period for get-transactions - `1y`: Last 12 months - `6m`: Last 6 months - `3m`: Last 3 months - `1m`: Last month - Default: `1y` | 1y |
page | string | Optional | - Page number for pagination - Default: `1` - Examples: `1`, `2`, `3` | 1 |
Code Examples
curl --request GET \
--url 'https://propertyfinder-uae-data.p.rapidapi.com/get-get-transactions?location_id=50&transaction_type=sold' \
--header 'x-rapidapi-host: propertyfinder-uae-data.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_API_KEY' Example Response
Response
{
"success": true,
"data": [
{
"bedrooms": 2,
"high_level_location_name": "Dubai Marina",
"id": "69e7ba45205fabffe07be5d7b8c127dc",
"price": 1550000,
"property_type": "Apartment",
"transaction_date": "2026-02-07"
}
]
} Try this endpoint now
Subscribe to PropertyfinderAPI on RapidAPI and start making requests in minutes.