Live
get_product_details
mercadolibre.com.arGets detailed information for a MercadoLibre Argentina item from https://mercadolibre.com.ar, including description, image gallery, seller profile data, and product attributes.
Parameters2
Runs15
Updated8d ago
Operational15 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Gets detailed information for a MercadoLibre Argentina item from https://mercadolibre.com.ar, including description, image gallery, seller profile data, and product attributes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"price": 0,
"title": "<string>",
"images": [
"<string>"
],
"seller": {},
"item_id": "<string>",
"reviews": {},
"domain_id": "<string>",
"attributes": [
{}
],
"source_url": "<string>",
"category_id": "<string>",
"currency_id": "<string>",
"description": "<string>",
"sold_quantity": 0,
"item_condition": "<string>",
"original_price": 0,
"listing_type_id": "<string>",
"structured_data": {},
"available_quantity": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/41903965-bfe9-4e31-ba8b-15c8c0a30768/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "41903965-bfe9-4e31-ba8b-15c8c0a30768",
"variables": {
"item_id": "MLA3796007674",
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="41903965-bfe9-4e31-ba8b-15c8c0a30768") — the "get_product_details" function, which gets detailed information for a MercadoLibre Argentina item from https://mercadolibre.com.ar, including description, image gallery, seller profile data, and product attributes.. It takes item_id (str), timeout_seconds (int). Return the result as structured JSON.