search_sale_listings
properstar.co.ukSearches Properstar (https://www.properstar.co.uk) for apartments and houses for sale by country and city. Returns up to 2,000 listings with prices, photos, room counts, square footage, listing URLs, and coordinates; pages beyond the retrievable window return stale_input.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_sale_listings?
Searches Properstar (https://www.properstar.co.uk) for apartments and houses for sale by country and city. Returns up to 2,000 listings with prices, photos, room counts, square footage, listing URLs, and coordinates; pages beyond the retrievable window return stale_input. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, city, page, page_size, currency and get the result back without maintaining a scraper.
Response
{
"query": {},
"status": "<string>",
"message": "<string>",
"listings": [
{}
],
"pagination": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/58572572-efa2-4916-ad1e-dea45881c5ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "58572572-efa2-4916-ad1e-dea45881c5ef",
"variables": {
"country": "Spain",
"city": "Madrid",
"page": 1,
"page_size": 20,
"currency": "GBP"
}
}'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="58572572-efa2-4916-ad1e-dea45881c5ef") — the "search_sale_listings" function, which searches Properstar (https://www.properstar.co.uk) for apartments and houses for sale by country and city. Returns up to 2,000 listings with prices, photos, room counts, square footage, listing URLs, and coordinates; pages beyond the retrievable window return stale_input.. It takes country (str), city (str), page (int), page_size (int), currency (str). Return the result as structured JSON.