get_listing_details
propiedades.comReturns comprehensive details for a specific property listing from https://propiedades.com, identified by URL slug or listing ID. It includes property facts, description, location, amenities, market statistics, contact details, and full gallery images.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Returns comprehensive details for a specific property listing from https://propiedades.com, identified by URL slug or listing ID. It includes property facts, description, location, amenities, market statistics, contact details, and full gallery images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"listing": {},
"listing_id": 0,
"listing_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d52ade6d-cf42-4a4f-8ff0-868133667010/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d52ade6d-cf42-4a4f-8ff0-868133667010",
"variables": {
"listing": "https://propiedades.com/inmuebles/departamento-en-renta-temistocles-polanco-iv-seccion-df-31650049"
}
}'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="d52ade6d-cf42-4a4f-8ff0-868133667010") — the "get_listing_details" function, which returns comprehensive details for a specific property listing from https://propiedades.com, identified by URL slug or listing ID. It includes property facts, description, location, amenities, market statistics, contact details, and full gallery images.. It takes listing (str). Return the result as structured JSON.