search_real_estate_listings
kv.eeSearches https://kv.ee for Estonian real estate using property, deal, location, room, price, and area filters. Returns automatically fetched result pages of up to 50 listings, source fields, and the portal's total match count.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_real_estate_listings?
Searches https://kv.ee for Estonian real estate using property, deal, location, room, price, and area filters. Returns automatically fetched result pages of up to 50 listings, source fields, and the portal's total match count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass property_type, deal_type, location, rooms_min, rooms_max, price_min, price_max, area_min, area_max, max_results and get the result back without maintaining a scraper.
Response
{
"pages": [
{
"start": 0,
"listings": [
{}
],
"page_number": 0,
"listing_count": 0
}
],
"complete": true,
"page_size": 0,
"total_count": 0,
"pages_fetched": 0,
"returned_count": 0,
"results_limited": true,
"resolved_location": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/463377a1-02b7-43de-924c-3c8b9e95e076/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "463377a1-02b7-43de-924c-3c8b9e95e076",
"variables": {
"property_type": "apartment",
"deal_type": "sale",
"location": "Tallinn",
"rooms_min": 2,
"rooms_max": 2,
"price_min": 150000,
"price_max": 155000,
"area_min": 35,
"area_max": 55,
"max_results": 200
}
}'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="463377a1-02b7-43de-924c-3c8b9e95e076") — the "search_real_estate_listings" function, which searches https://kv.ee for Estonian real estate using property, deal, location, room, price, and area filters. Returns automatically fetched result pages of up to 50 listings, source fields, and the portal's total match count.. It takes property_type (str), deal_type (str), location (str), rooms_min (int), rooms_max (int), price_min (int), price_max (int), area_min (float), area_max (float), max_results (int). Return the result as structured JSON.