search_sold_listings
booli.seSearches historical sold property listings and completed transactions on https://booli.se by Swedish location. Returns newest sales first with optional sale-date filters, sold prices, addresses, coordinates, property attributes, and available image metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_sold_listings?
Searches historical sold property listings and completed transactions on https://booli.se by Swedish location. Returns newest sales first with optional sale-date filters, sold prices, addresses, coordinates, property attributes, and available image metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location_query, page, min_sold_date, max_sold_date and get the result back without maintaining a scraper.
Response
{
"page": 0,
"pages": 0,
"query": "<string>",
"records": [
{}
],
"total_count": 0,
"result_count": 0,
"max_sold_date": "<string>",
"min_sold_date": "<string>",
"resolved_area": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/1c32936b-3162-4526-acfb-2384a04f9a37/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1c32936b-3162-4526-acfb-2384a04f9a37",
"variables": {
"location_query": "Stockholm",
"page": 1,
"min_sold_date": "",
"max_sold_date": ""
}
}'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="1c32936b-3162-4526-acfb-2384a04f9a37") — the "search_sold_listings" function, which searches historical sold property listings and completed transactions on https://booli.se by Swedish location. Returns newest sales first with optional sale-date filters, sold prices, addresses, coordinates, property attributes, and available image metadata.. It takes location_query (str), page (int), min_sold_date (str), max_sold_date (str). Return the result as structured JSON.