Marketplace
No threads yet
Live

get_listing_details

properstar.co.uk

Retrieves complete property details from Properstar (https://www.properstar.co.uk) by numeric listing ID, including multi-currency prices, rooms, areas, the full photo gallery, coordinates, descriptions, contacts, and advertiser information. Missing or removed listings return stale_input.

Parameters2
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_listing_details?

Retrieves complete property details from Properstar (https://www.properstar.co.uk) by numeric listing ID, including multi-currency prices, rooms, areas, the full photo gallery, coordinates, descriptions, contacts, and advertiser information. Missing or removed listings return stale_input. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id, currency and get the result back without maintaining a scraper.

Response

{
  "status": "<string>",
  "listing": {},
  "message": "<string>",
  "listing_id": 0,
  "listing_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0254a4a9-7fe8-4644-a589-d21003b6a448/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0254a4a9-7fe8-4644-a589-d21003b6a448",
    "variables": {
        "listing_id": 111372789,
        "currency": "GBP"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="0254a4a9-7fe8-4644-a589-d21003b6a448") — the "get_listing_details" function, which retrieves complete property details from Properstar (https://www.properstar.co.uk) by numeric listing ID, including multi-currency prices, rooms, areas, the full photo gallery, coordinates, descriptions, contacts, and advertiser information. Missing or removed listings return stale_input..

It takes listing_id (int), currency (str). Return the result as structured JSON.