search_real_estate_agents
propertyfinder.aeSearches real estate agents on https://propertyfinder.ae and returns paginated, detailed agent profiles including contact details, ratings, transaction history, brokerage information, and expertise locations. Uses the site endpoint that returns 20 agents per page by default.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_real_estate_agents?
Searches real estate agents on https://propertyfinder.ae and returns paginated, detailed agent profiles including contact details, ratings, transaction history, brokerage information, and expertise locations. Uses the site endpoint that returns 20 agents per page by default. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, per_page, category_id, location_id, property_type_id, language_ids, nationality, sort, is_superagent, timeout_seconds, locale and get the result back without maintaining a scraper.
Response
{
"page": 0,
"total": 0,
"agents": [
{}
],
"per_page": 0,
"total_pages": 0,
"result_count": 0,
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/369b90a0-2546-49c9-a1f1-48902e2997b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "369b90a0-2546-49c9-a1f1-48902e2997b9",
"variables": {
"query": "",
"page": 1,
"per_page": 20,
"category_id": 1,
"location_id": "",
"property_type_id": "",
"language_ids": "",
"nationality": "",
"sort": "",
"is_superagent": false,
"timeout_seconds": 30,
"locale": "en"
}
}'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="369b90a0-2546-49c9-a1f1-48902e2997b9") — the "search_real_estate_agents" function, which searches real estate agents on https://propertyfinder.ae and returns paginated, detailed agent profiles including contact details, ratings, transaction history, brokerage information, and expertise locations. Uses the site endpoint that returns 20 agents per page by default.. It takes query (str), page (int), per_page (int), category_id (int), location_id (str), property_type_id (str), language_ids (str), nationality (str), sort (str), is_superagent (bool), timeout_seconds (int), locale (str). Return the result as structured JSON.