Live
search_products_by_barcode
noon.comSearches https://www.noon.com grocery products by EAN, UPC, or GTIN barcode, then falls back to the full catalog and returns complete non-empty product records.
Parameters1
Runs7
Updated3d ago
Operational7 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.noon.com grocery products by EAN, UPC, or GTIN barcode, then falls back to the full catalog and returns complete non-empty product records. 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
{
"barcode": "<string>",
"products": [
{}
],
"search_url": "<string>",
"total_pages": 0,
"search_scope": "<string>",
"fallback_used": true,
"matched_query": "<string>",
"total_results": 0,
"barcode_format": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/bca5220f-d65e-4000-8cae-78f6d6a5b3d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "bca5220f-d65e-4000-8cae-78f6d6a5b3d7",
"variables": {
"barcode": "6251001310467"
}
}'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="bca5220f-d65e-4000-8cae-78f6d6a5b3d7") — the "search_products_by_barcode" function, which searches https://www.noon.com grocery products by EAN, UPC, or GTIN barcode, then falls back to the full catalog and returns complete non-empty product records.. It takes barcode (str). Return the result as structured JSON.