Marketplace
No threads yet
Live

get_product_details

yochananof.co.il

Returns full details for one SKU from https://www.yochananof.co.il, including descriptions when supplied, prices and discounts, stock, images, and category hierarchy.

Parameters1
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_product_details?

Returns full details for one SKU from https://www.yochananof.co.il, including descriptions when supplied, prices and discounts, stock, images, and category hierarchy. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sku and get the result back without maintaining a scraper.

Response

{
  "product": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5ed0b411-f82c-47ba-aac5-cf9a2942b425/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5ed0b411-f82c-47ba-aac5-cf9a2942b425",
    "variables": {
        "sku": "7290004131074"
    }
}'

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="5ed0b411-f82c-47ba-aac5-cf9a2942b425") — the "get_product_details" function, which returns full details for one SKU from https://www.yochananof.co.il, including descriptions when supplied, prices and discounts, stock, images, and category hierarchy..

It takes sku (str). Return the result as structured JSON.