search_properties_uae
propertyfinder.aeSearches property listings across the UAE on https://propertyfinder.ae with location, price, area, bedroom, bathroom, property-type, broker, sort, and page filters. Returns up to 25 comprehensive property records per page with pricing, descriptions, amenities, images, agents, and brokers.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_properties_uae?
Searches property listings across the UAE on https://propertyfinder.ae with location, price, area, bedroom, bathroom, property-type, broker, sort, and page filters. Returns up to 25 comprehensive property records per page with pricing, descriptions, amenities, images, agents, and brokers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, location, min_price, max_price, min_area, max_area, bedrooms, bathrooms, property_type, broker, sort_order, page, price_period and get the result back without maintaining a scraper.
Response
{
"page": 0,
"filters": {},
"metadata": {},
"per_page": 0,
"page_count": 0,
"properties": [
{}
],
"total_count": 0,
"result_count": 0,
"new_properties_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/707fc8ac-5b19-4d7b-a351-bc4ef5c37cb1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "707fc8ac-5b19-4d7b-a351-bc4ef5c37cb1",
"variables": {
"category": "rent",
"location": "",
"min_price": 0,
"max_price": 0,
"min_area": 0,
"max_area": 0,
"bedrooms": "",
"bathrooms": "",
"property_type": "",
"broker": "",
"sort_order": "featured",
"page": 1,
"price_period": "yearly"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="707fc8ac-5b19-4d7b-a351-bc4ef5c37cb1") — the "search_properties_uae" function, which searches property listings across the UAE on https://propertyfinder.ae with location, price, area, bedroom, bathroom, property-type, broker, sort, and page filters. Returns up to 25 comprehensive property records per page with pricing, descriptions, amenities, images, agents, and brokers.. It takes category (str), location (str), min_price (int), max_price (int), min_area (int), max_area (int), bedrooms (str), bathrooms (str), property_type (str), broker (str), sort_order (str), page (int), price_period (str). Return the result as structured JSON.