search_product_by_ean13
waitrose.aeSearches the https://www.waitrose.ae catalogue by EAN-13 barcode and returns the single exact matching product with full identity, pricing, availability, ingredient, allergy, storage, image, and category details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_product_by_ean13?
Searches the https://www.waitrose.ae catalogue by EAN-13 barcode and returns the single exact matching product with full identity, pricing, availability, ingredient, allergy, storage, image, and category details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ean13 and get the result back without maintaining a scraper.
Response
{
"product": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/124fd54a-1df9-4e24-97ff-4846c34ca65f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "124fd54a-1df9-4e24-97ff-4846c34ca65f",
"variables": {
"ean13": "5059319022437"
}
}'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="124fd54a-1df9-4e24-97ff-4846c34ca65f") — the "search_product_by_ean13" function, which searches the https://www.waitrose.ae catalogue by EAN-13 barcode and returns the single exact matching product with full identity, pricing, availability, ingredient, allergy, storage, image, and category details.. It takes ean13 (str). Return the result as structured JSON.