search_carrefour_uae_product_by_ean
carrefouruae.comSearches the catalog at https://www.carrefouruae.com by EAN or barcode, verifies the exact barcode match, and returns the complete product record with pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when no product matches.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_carrefour_uae_product_by_ean?
Searches the catalog at https://www.carrefouruae.com by EAN or barcode, verifies the exact barcode match, and returns the complete product record with pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when no product matches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ean and get the result back without maintaining a scraper.
Response
{
"product": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/53f2d5eb-6b82-4bd2-9522-e60a8231b7fc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "53f2d5eb-6b82-4bd2-9522-e60a8231b7fc",
"variables": {
"ean": "6291001014583"
}
}'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="53f2d5eb-6b82-4bd2-9522-e60a8231b7fc") — the "search_carrefour_uae_product_by_ean" function, which searches the catalog at https://www.carrefouruae.com by EAN or barcode, verifies the exact barcode match, and returns the complete product record with pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when no product matches.. It takes ean (str). Return the result as structured JSON.