get_real_estate_listing
kv.eeRetrieves a complete property listing by numeric ID from https://kv.ee. Returns property attributes, full description, accurate price, coordinates, images, seller contact details, development context, and nearby places when exposed.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_real_estate_listing?
Retrieves a complete property listing by numeric ID from https://kv.ee. Returns property attributes, full description, accurate price, coordinates, images, seller contact details, development context, and nearby places when exposed. 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>",
"floor": 0,
"price": 0,
"rooms": 0,
"title": "<string>",
"seller": {
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"company": "<string>",
"image_url": "<string>",
"profile_url": "<string>"
},
"address": {},
"map_url": "<string>",
"area_sqm": 0,
"bedrooms": 0,
"currency": "<string>",
"condition": "<string>",
"attributes": {},
"image_urls": [
"<string>"
],
"listing_id": 0,
"year_built": 0,
"coordinates": {
"latitude": 0,
"longitude": 0
},
"date_posted": "<string>",
"description": "<string>",
"development": {},
"source_type": "<string>",
"availability": "<string>",
"energy_class": "<string>",
"listing_type": "<string>",
"registry_url": "<string>",
"total_floors": 0,
"map_image_url": "<string>",
"nearby_places": [
{
"places": [
{
"name": "<string>",
"distance": "<string>",
"transit_lines": [
"<string>"
]
}
],
"category": "<string>"
}
],
"price_per_sqm": 0,
"feature_groups": {},
"ownership_type": "<string>",
"business_function": "<string>",
"price_valid_until": "<string>",
"specification_text": "<string>",
"description_heading": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/cea1c655-16bb-4ad6-ac72-1f0fe9530a0e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "cea1c655-16bb-4ad6-ac72-1f0fe9530a0e",
"variables": {
"listing_id": 3754545
}
}'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="cea1c655-16bb-4ad6-ac72-1f0fe9530a0e") — the "get_real_estate_listing" function, which retrieves a complete property listing by numeric ID from https://kv.ee. Returns property attributes, full description, accurate price, coordinates, images, seller contact details, development context, and nearby places when exposed.. It takes listing_id (int). Return the result as structured JSON.