search_properties
mercadolibre.com.arSearches real estate listings on https://mercadolibre.com.ar and returns structured property records from MercadoLibre Argentina filtered by operation type and property type.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_properties?
Searches real estate listings on https://mercadolibre.com.ar and returns structured property records from MercadoLibre Argentina filtered by operation type and property type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass operation_type, property_type, page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"site": "<string>",
"listings": [
{}
],
"search_url": "<string>",
"property_type": "<string>",
"operation_type": "<string>",
"returned_count": 0,
"total_results_hint": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/fc2e2859-e5b1-4f38-8eaa-bc9fba10e441/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fc2e2859-e5b1-4f38-8eaa-bc9fba10e441",
"variables": {
"operation_type": "venta",
"property_type": "departamentos",
"page": 1,
"timeout_seconds": 25
}
}'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="fc2e2859-e5b1-4f38-8eaa-bc9fba10e441") — the "search_properties" function, which searches real estate listings on https://mercadolibre.com.ar and returns structured property records from MercadoLibre Argentina filtered by operation type and property type.. It takes operation_type (str), property_type (str), page (int), timeout_seconds (int). Return the result as structured JSON.