get_location_suggestions
propertyfinder.aeReturns autocomplete suggestions for UAE cities, communities, subcommunities, and buildings from https://propertyfinder.ae, including location IDs, slugs, and parent hierarchies for property-search filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_location_suggestions?
Returns autocomplete suggestions for UAE cities, communities, subcommunities, and buildings from https://propertyfinder.ae, including location IDs, slugs, and parent hierarchies for property-search filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"suggestions": [
{}
],
"total_count": 0,
"total_pages": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/600b2303-7d55-485d-8089-1cfe89b00f05/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "600b2303-7d55-485d-8089-1cfe89b00f05",
"variables": {
"query": "Dubai Marina",
"limit": 10
}
}'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="600b2303-7d55-485d-8089-1cfe89b00f05") — the "get_location_suggestions" function, which returns autocomplete suggestions for UAE cities, communities, subcommunities, and buildings from https://propertyfinder.ae, including location IDs, slugs, and parent hierarchies for property-search filters.. It takes query (str), limit (int). Return the result as structured JSON.