get_product_store_prices
pricez.co.ilRetrieves current per-store product prices and stock availability from https://www.pricez.co.il, including chain, branch, city, unit price, price type, and update dates. Pass a product_id returned by search_products; all published city listings are collected automatically.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_store_prices?
Retrieves current per-store product prices and stock availability from https://www.pricez.co.il, including chain, branch, city, unit price, price type, and update dates. Pass a product_id returned by search_products; all published city listings are collected automatically. 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
{
"sku": "<string>",
"name": "<string>",
"brand": "<string>",
"stores": [
{
"city": "<string>",
"chain": "<string>",
"price": 0,
"branch": "<string>",
"city_id": 0,
"currency": "<string>",
"price_type": "<string>",
"store_name": "<string>",
"unit_price": 0,
"stock_status": "<string>",
"valid_through": "<string>",
"address_country": "<string>",
"city_prices_url": "<string>",
"last_updated_date": "<string>"
}
],
"barcode": "<string>",
"category": "<string>",
"currency": "<string>",
"brand_url": "<string>",
"image_url": "<string>",
"city_count": 0,
"product_id": 0,
"product_url": "<string>",
"store_count": 0,
"source_updated_at": "<string>",
"national_max_price": 0,
"national_min_price": 0,
"source_offer_count": 0,
"national_prices_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e86694db-0d7c-4345-a34d-01c597690e0f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e86694db-0d7c-4345-a34d-01c597690e0f",
"variables": {
"product_id": 89735
}
}'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="e86694db-0d7c-4345-a34d-01c597690e0f") — the "get_product_store_prices" function, which retrieves current per-store product prices and stock availability from https://www.pricez.co.il, including chain, branch, city, unit price, price type, and update dates. Pass a product_id returned by search_products; all published city listings are collected automatically.. It takes product_id (int). Return the result as structured JSON.