Happy Endpoint

Get historical property transactions

Get historical property transaction data (sales and rentals) for a location. Useful for market analysis and price trends.

GET
/get-transactions

Query Parameters

location_id*string
  • Location ID from /autocomplete-location endpoint
  • Example: 50 (Dubai Marina), 51 (Downtown Dubai)
Length1 <= length
transaction_type*string
  • Type of transaction history to view
  • sold: Properties that were sold
  • rented: Properties that were rented
Value in"sold" | "rented"
property_type?string
  • Filter 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
Value in"apartment" | "villa" | "townhouse" | "penthouse" | "compound" | "duplex" | "full-floor" | "half-floor" | "whole-building" | "bulk-rent-unit" | "bungalow" | "hotel-apartment" | "office-space" | "retail" | "warehouse" | "shop" | "show-room" | "land" | "factory" | "labor-camp" | "staff-accommodation" | "business-centre" | "co-working-space" | "farm"
bedrooms?string
  • Filter by number of bedrooms
  • Use 0 for studio apartments
  • Examples: 0, 1, 2, 3
sort?string
  • Sort transactions by
  • newest: Most recent transactions first
  • oldest: Oldest transactions first
  • high_price: Highest price first
  • low_price: Lowest price first
  • Default: newest
Default"newest"
Value in"newest" | "oldest" | "high_price" | "low_price"
period?string
  • Time period for transactions
  • 1y: Last 12 months
  • 6m: Last 6 months
  • 3m: Last 3 months
  • 1m: Last month
  • Default: 1y
Default"1y"
Value in"1y" | "6m" | "3m" | "1m"
page?string
  • Page number for pagination
  • Default: 1
  • Examples: 1, 2, 3
Default"1"

Header Parameters

X-RapidAPI-Host*string
Default"propertyfinder-uae-data.p.rapidapi.com"

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/get-transactions?location_id=50&transaction_type=sold" \  -H "X-RapidAPI-Host: propertyfinder-uae-data.p.rapidapi.com"
{
  "success": true,
  "data": [
    {
      "bedrooms": 2,
      "high_level_location_name": "Dubai Marina",
      "id": "69e7ba45205fabffe07be5d7b8c127dc",
      "price": 1550000,
      "property_type": "Apartment",
      "transaction_date": "2026-02-07"
    }
  ]
}
{
  "success": true,
  "error": "string",
  "code": 0
}
{
  "success": true,
  "error": "string",
  "code": 0
}
{
  "success": true,
  "error": "string",
  "code": 0
}
{
  "success": true,
  "error": "string",
  "code": 0
}