get_carrefour_uae_product_details
carrefouruae.comReturns a complete product record from https://www.carrefouruae.com for a Carrefour UAE product ID, including barcode, pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when the ID does not match a listed product.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_carrefour_uae_product_details?
Returns a complete product record from https://www.carrefouruae.com for a Carrefour UAE product ID, including barcode, pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when the ID does not match a listed product. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id and get the result back without maintaining a scraper.
Response
{
"product": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/f705929a-6b2c-4fcd-a50e-63361eb2f3df/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f705929a-6b2c-4fcd-a50e-63361eb2f3df",
"variables": {
"product_id": "1590989"
}
}'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="f705929a-6b2c-4fcd-a50e-63361eb2f3df") — the "get_carrefour_uae_product_details" function, which returns a complete product record from https://www.carrefouruae.com for a Carrefour UAE product ID, including barcode, pricing, availability, brand, origin, category hierarchy, images, fulfillment, and product information. Raises an error when the ID does not match a listed product.. It takes product_id (str). Return the result as structured JSON.