Live
search_products_by_barcode
grandiose.aeSearches https://www.grandiose.ae for products matching an EAN/UPC barcode and returns all matching product records with pricing, stock availability by source, and category information.
Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products_by_barcode?
Searches https://www.grandiose.ae for products matching an EAN/UPC barcode and returns all matching product records with pricing, stock availability by source, and category information. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass barcode and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"barcode": "<string>",
"products": [
{}
],
"total_count": 0,
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3ebaa8fa-22a1-4066-ad18-fa6e6cb85b3c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3ebaa8fa-22a1-4066-ad18-fa6e6cb85b3c",
"variables": {
"barcode": "6281101220229"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3ebaa8fa-22a1-4066-ad18-fa6e6cb85b3c") — the "search_products_by_barcode" function, which searches https://www.grandiose.ae for products matching an EAN/UPC barcode and returns all matching product records with pricing, stock availability by source, and category information.. It takes barcode (str). Return the result as structured JSON.