GET
/broker-properties Get properties listed by a brokerage
Description
Get all properties listed by a specific real estate brokerage or agency. Filter by property category (for sale, for rent, commercial). Returns parsed structured data.
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
broker_id | string | Required | - Broker/Agency ID from `/search-broker` endpoint - Find broker IDs by searching brokers first | 4428 |
category | string | Optional | - Filter broker's properties by transaction type - `residential_sale`: Properties for sale - `residential_rent`: Properties for rent - `commercial_sale`: Commercial properties for sale - `commercial_rent`: Commercial properties for rent - Leave empty to show all | residential_sale |
sort | string | Optional | - Sort order for results - Options: `featured`, `newest`, `price_asc`, `price_desc` - Default: `featured` | featured |
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/broker-properties?broker_id=4428' \
--header 'x-rapidapi-host: propertyfinder-uae-data.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_API_KEY' Example Response
Response
{
"success": true,
"data": [
{
"listing_type": "property",
"property_id": "16181926",
"property_type": "Villa",
"price": {
"value": 180000000,
"currency": "AED",
"period": "sell",
"is_hidden": false
},
"location": {
"id": "4270",
"full_name": "Signature Villas Frond J, Signature Villas, Palm Jumeirah, Dubai"
},
"images": [
"https://static.shared.propertyfinder.ae/media/images/listing/QENWPA42A7STBTPPSGZ3KZDH00/848d14ea-fbfa-40e7-9b12-cfb860d22f7f/416x272.jpg"
],
"agent_name": "Jake Jones",
"agent_id": "192521",
"broker_id": "4428",
"bedrooms": "6",
"bathrooms": "7",
"share_url": "https://www.propertyfinder.ae/en/plp/buy/villa-for-sale-dubai-palm-jumeirah-signature-villas-signature-villas-frond-j-16181926.html",
"title": "Palm Jumeirah Ultra Luxury Custom Built Villa!"
}
]
} Try this endpoint now
Subscribe to PropertyfinderAPI on RapidAPI and start making requests in minutes.