get_product_details
www2.hm.comReturns Korean H&M product details from https://www2.hm.com with all color variants, KRW prices, member pricing, labeled images, stock state and size-level online availability.
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 Korean H&M product details from https://www2.hm.com with all color variants, KRW prices, member pricing, labeled images, stock state and size-level online availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass article_code, product_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"locale": "<string>",
"source": "<string>",
"product": {},
"currency": "<string>",
"product_url": "<string>",
"article_code": "<string>",
"color_variants": [
{}
],
"color_variant_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0fab32f2-a93f-4f97-ab59-772fdf35238c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0fab32f2-a93f-4f97-ab59-772fdf35238c",
"variables": {
"article_code": "1349080002",
"product_url": "",
"timeout_seconds": 30
}
}'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="0fab32f2-a93f-4f97-ab59-772fdf35238c") — the "get_product_details" function, which returns Korean H&M product details from https://www2.hm.com with all color variants, KRW prices, member pricing, labeled images, stock state and size-level online availability.. It takes article_code (str), product_url (str), timeout_seconds (int). Return the result as structured JSON.