Marketplace
No threads yet
Live

get_product_details

scuffers.com

Returns complete product details by handle or URL from https://scuffers.com, including description, pricing, every variant, SKU, image, media item and option.

Parameters2
Runs6
Updated3d ago
Operational6 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 complete product details by handle or URL from https://scuffers.com, including description, pricing, every variant, SKU, image, media item and option. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle_or_url, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "product": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/33b62c5b-cc42-4d59-890c-c1f62e84ba2f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "33b62c5b-cc42-4d59-890c-c1f62e84ba2f",
    "variables": {
        "handle_or_url": "flame-ecru-zipper",
        "timeout_seconds": 20
    }
}'

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="33b62c5b-cc42-4d59-890c-c1f62e84ba2f") — the "get_product_details" function, which returns complete product details by handle or URL from https://scuffers.com, including description, pricing, every variant, SKU, image, media item and option..

It takes handle_or_url (str), timeout_seconds (int). Return the result as structured JSON.