search_mercado_livre_lowest_priced_offer
lista.mercadolivre.com.brFinds the lowest-priced deal item matching a keyword within a Mercado Livre Ofertas category by reading https://lista.mercadolivre.com.br. Returns the single cheapest matching listing or null when no matching deal is found.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_mercado_livre_lowest_priced_offer?
Finds the lowest-priced deal item matching a keyword within a Mercado Livre Ofertas category by reading https://lista.mercadolivre.com.br. Returns the single cheapest matching listing or null when no matching deal is found. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, category_id, max_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"item": {},
"keyword": "<string>",
"source_url": "<string>",
"category_id": "<string>",
"match_count": 0,
"pages_scanned": 0,
"scan_truncated": true,
"total_items_scanned": 0,
"total_pages_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/1cf2e316-f2ae-467c-9fe4-a56cdf3827f7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1cf2e316-f2ae-467c-9fe4-a56cdf3827f7",
"variables": {
"keyword": "relogio",
"category_id": "MLB3937",
"max_pages": 30,
"timeout_seconds": 35
}
}'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="1cf2e316-f2ae-467c-9fe4-a56cdf3827f7") — the "search_mercado_livre_lowest_priced_offer" function, which finds the lowest-priced deal item matching a keyword within a Mercado Livre Ofertas category by reading https://lista.mercadolivre.com.br. Returns the single cheapest matching listing or null when no matching deal is found.. It takes keyword (str), category_id (str), max_pages (int), timeout_seconds (int). Return the result as structured JSON.