GET
/agent-properties Get properties listed by an agent
Description
Get all properties listed by a specific real estate agent. Filter by property category (for sale, for rent, commercial). Returns parsed, structured data.
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
agent_id | string | Required | - Agent ID from `/search-agent` endpoint - Find agent IDs by searching agents first | 229838 |
category | string | Optional | - Filter agent'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/agent-properties?agent_id=229838' \
--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": "16211384",
"property_type": "Villa",
"price": {
"value": 3550000,
"currency": "AED",
"period": "sell",
"is_hidden": false
},
"location": {
"id": "1765",
"full_name": "Golf Community, Al Zorah, Ajman"
},
"broker_id": "5497",
"images": [
"https://static.shared.propertyfinder.ae/media/images/listing/MTG981RA287YCH6PWZNKG6PNPG/bbbcc137-8ba1-4114-bfd3-bfda72ddb5c0/416x272.jpg"
],
"size": {
"value": 3800,
"unit": "sqft"
},
"title": "Upscale comfort, private pool– Al Zorah- freehold",
"bathrooms": "6",
"bedrooms": "4",
"share_url": "https://www.propertyfinder.ae/en/plp/buy/villa-for-sale-ajman-al-zorah-golf-community-16211384.html"
}
]
} Try this endpoint now
Subscribe to PropertyfinderAPI on RapidAPI and start making requests in minutes.