get_product_details
mercadolibre.comRetrieves a full MercadoLibre listing from https://mercadolibre.com by listing ID or product URL. Returns description, images, specifications, seller information, price, shipping, condition, ratings, and stock details exposed by the source.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Retrieves a full MercadoLibre listing from https://mercadolibre.com by listing ID or product URL. Returns description, images, specifications, seller information, price, shipping, condition, ratings, and stock details exposed by the source. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id_or_url and get the result back without maintaining a scraper.
Response
{
"id": "<string>",
"tags": [
"<string>"
],
"price": 0,
"stock": {
"text": "<string>",
"status": "<string>",
"stop_time": "<string>",
"start_time": "<string>",
"buying_mode": "<string>",
"inventory_id": "<string>",
"sold_quantity": 0,
"source_fields": {},
"listing_type_id": "<string>",
"initial_quantity": 0,
"available_quantity": 0
},
"title": "<string>",
"health": 0,
"images": [
{
"id": "<string>",
"url": "<string>",
"size": "<string>",
"quality": "<string>",
"max_size": "<string>",
"secure_url": "<string>"
}
],
"rating": 0,
"seller": {
"id": 0,
"city": "<string>",
"name": "<string>",
"state": "<string>",
"status": "<string>",
"country": "<string>",
"nickname": "<string>",
"reputation": {},
"transactions": {},
"source_fields": {},
"official_store_id": 0,
"registration_date": "<string>",
"power_seller_status": "<string>"
},
"site_id": "<string>",
"channels": [
"<string>"
],
"currency": "<string>",
"location": {},
"shipping": {},
"subtitle": "<string>",
"video_id": "<string>",
"warranty": "<string>",
"condition": "<string>",
"domain_id": "<string>",
"permalink": "<string>",
"attributes": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>",
"values": [
{}
],
"group_id": "<string>",
"value_id": "<string>",
"group_name": "<string>"
}
],
"base_price": 0,
"sale_terms": [
{}
],
"variations": [
{}
],
"category_id": "<string>",
"description": "<string>",
"date_created": "<string>",
"last_updated": "<string>",
"review_count": 0,
"source_fields": {},
"original_price": 0,
"catalog_product_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2dfaa39b-a557-4e17-abf9-8d324cbe1174/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2dfaa39b-a557-4e17-abf9-8d324cbe1174",
"variables": {
"item_id_or_url": "MLM2572269083"
}
}'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="2dfaa39b-a557-4e17-abf9-8d324cbe1174") — the "get_product_details" function, which retrieves a full MercadoLibre listing from https://mercadolibre.com by listing ID or product URL. Returns description, images, specifications, seller information, price, shipping, condition, ratings, and stock details exposed by the source.. It takes item_id_or_url (str). Return the result as structured JSON.