search_ae_products_by_barcode
amazon.aeSearches product listings on https://amazon.ae using an EAN/UPC barcode keyword and returns matched products. For each match, it fetches the product detail page on Amazon.ae and returns brand, model, weight, and full non-empty product specifications, with optional grocery-only scope.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_ae_products_by_barcode?
Searches product listings on https://amazon.ae using an EAN/UPC barcode keyword and returns matched products. For each match, it fetches the product detail page on Amazon.ae and returns brand, model, weight, and full non-empty product specifications, with optional grocery-only scope. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass barcode, grocery_only, max_results, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"barcode": "<string>",
"products": [
{
"asin": "<string>",
"details": {},
"search_result": {}
}
],
"search_url": "<string>",
"grocery_only": true,
"result_count": 0,
"retrieved_at_utc": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/406eeec8-68f4-46a3-9d73-810ad979e10b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "406eeec8-68f4-46a3-9d73-810ad979e10b",
"variables": {
"barcode": "735812540610",
"grocery_only": false,
"max_results": 5,
"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="406eeec8-68f4-46a3-9d73-810ad979e10b") — the "search_ae_products_by_barcode" function, which searches product listings on https://amazon.ae using an EAN/UPC barcode keyword and returns matched products. For each match, it fetches the product detail page on Amazon.ae and returns brand, model, weight, and full non-empty product specifications, with optional grocery-only scope.. It takes barcode (str), grocery_only (bool), max_results (int), timeout_seconds (int). Return the result as structured JSON.