get_property_details
nekretnine.rsRetrieves full property details from https://www.nekretnine.rs for a numeric listing ID. Returns description, price, features, photos, location coordinates, agency contact, and all non-empty record fields exposed by the site.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_property_details?
Retrieves full property details from https://www.nekretnine.rs for a numeric listing ID. Returns description, price, features, photos, location coordinates, agency contact, and all non-empty record fields exposed by the site. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"details": {},
"listing_id": 0,
"source_fields": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/65a4e592-8c51-4832-a8af-d6eabe2dc0bb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "65a4e592-8c51-4832-a8af-d6eabe2dc0bb",
"variables": {
"listing_id": 1239573
}
}'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="65a4e592-8c51-4832-a8af-d6eabe2dc0bb") — the "get_property_details" function, which retrieves full property details from https://www.nekretnine.rs for a numeric listing ID. Returns description, price, features, photos, location coordinates, agency contact, and all non-empty record fields exposed by the site.. It takes listing_id (int). Return the result as structured JSON.