get_mercado_livre_current_offers
lista.mercadolivre.com.brRetrieves all listings currently shown on the Mercado Livre Ofertas page from https://lista.mercadolivre.com.br. The days parameter is accepted for compatibility but does not filter results because the page only contains active deals.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_mercado_livre_current_offers?
Retrieves all listings currently shown on the Mercado Livre Ofertas page from https://lista.mercadolivre.com.br. The days parameter is accepted for compatibility but does not filter results because the page only contains active deals. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass days, page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"days": 0,
"page": 0,
"listings": [
{}
],
"page_size": 0,
"source_url": "<string>",
"total_available": 0,
"days_filter_applied": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/f8346175-18c3-4bc2-9187-08a59bd1702f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f8346175-18c3-4bc2-9187-08a59bd1702f",
"variables": {
"days": 1,
"page": 1,
"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="f8346175-18c3-4bc2-9187-08a59bd1702f") — the "get_mercado_livre_current_offers" function, which retrieves all listings currently shown on the Mercado Livre Ofertas page from https://lista.mercadolivre.com.br. The days parameter is accepted for compatibility but does not filter results because the page only contains active deals.. It takes days (int), page (int), timeout_seconds (int). Return the result as structured JSON.