get_product_details
amazon.aeReturns one Amazon.ae listing from https://amazon.ae with title, current and list prices, brand, model, weight, EAN or UPC barcodes, and all non-empty technical specifications.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Returns one Amazon.ae listing from https://amazon.ae with title, current and list prices, brand, model, weight, EAN or UPC barcodes, and all non-empty technical specifications. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass asin_or_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"product": {
"asin": "<string>",
"brand": "<string>",
"model": "<string>",
"price": 0,
"title": "<string>",
"weight": "<string>",
"barcode": "<string>",
"barcodes": {},
"currency": "<string>",
"list_price": 0,
"price_text": "<string>",
"product_url": "<string>",
"barcode_type": "<string>",
"specifications": {},
"list_price_text": "<string>"
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/45b5f64c-271e-47cd-824f-4fbffaa29fd9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "45b5f64c-271e-47cd-824f-4fbffaa29fd9",
"variables": {
"asin_or_url": "DEFAULT_ASIN",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="45b5f64c-271e-47cd-824f-4fbffaa29fd9") — the "get_product_details" function, which returns one Amazon.ae listing from https://amazon.ae with title, current and list prices, brand, model, weight, EAN or UPC barcodes, and all non-empty technical specifications.. It takes asin_or_url (str), timeout_seconds (int). Return the result as structured JSON.