search_car_listings
autos.mercadolibre.com.arSearches used and new car listings on https://autos.mercadolibre.com.ar. Returns 48 detailed records per page with vehicle, price, mileage, location, seller type, photo, and listing identifiers.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_car_listings?
Searches used and new car listings on https://autos.mercadolibre.com.ar. Returns 48 detailed records per page with vehicle, price, mileage, location, seller type, photo, and listing identifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{
"id": "<string>",
"km": 0,
"url": "<string>",
"year": 0,
"brand": "<string>",
"model": "<string>",
"title": "<string>",
"currency": "<string>",
"location": "<string>",
"image_url": "<string>",
"category_id": "<string>",
"seller_type": "<string>",
"price_original": 0
}
],
"per_page": 0,
"source_url": "<string>",
"total_pages": 0,
"total_results": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/4d6fc113-e513-4c61-9446-146238f15edb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4d6fc113-e513-4c61-9446-146238f15edb",
"variables": {
"query": "toyota hilux 2020",
"page": 1
}
}'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="4d6fc113-e513-4c61-9446-146238f15edb") — the "search_car_listings" function, which searches used and new car listings on https://autos.mercadolibre.com.ar. Returns 48 detailed records per page with vehicle, price, mileage, location, seller type, photo, and listing identifiers.. It takes query (str), page (int). Return the result as structured JSON.