get_listing_details
propertyfinder.aeFetches full details for a single listing on https://propertyfinder.ae by loading the listing page and extracting all non-empty property fields. If AWS WAF blocks the detail page, the response reports blocked=true and advises using search_properties for comprehensive property data.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Fetches full details for a single listing on https://propertyfinder.ae by loading the listing page and extracting all non-empty property fields. If AWS WAF blocks the detail page, the response reports blocked=true and advises using search_properties for comprehensive property data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass property_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"note": "<string>",
"blocked": true,
"property": {},
"listing_id": "<string>",
"status_code": 0,
"property_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3b30e967-3a2e-45aa-9d30-d8a7150fbff2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3b30e967-3a2e-45aa-9d30-d8a7150fbff2",
"variables": {
"property_url": "DEFAULT_PROPERTY_URL",
"timeout_seconds": 30
}
}'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="3b30e967-3a2e-45aa-9d30-d8a7150fbff2") — the "get_listing_details" function, which fetches full details for a single listing on https://propertyfinder.ae by loading the listing page and extracting all non-empty property fields. If AWS WAF blocks the detail page, the response reports blocked=true and advises using search_properties for comprehensive property data.. It takes property_url (str), timeout_seconds (int). Return the result as structured JSON.