Live
get_product_variant_inventory
cieleathletics.comReturns per-variant product details and live inventory quantities from https://cieleathletics.com for one product handle, including price, SKU, availability, and stock count.
Parameters1
Runs6
Updated3d ago
Operational6 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 get_product_variant_inventory?
Returns per-variant product details and live inventory quantities from https://cieleathletics.com for one product handle, including price, SKU, availability, and stock count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_handle and get the result back without maintaining a scraper.
Response
{
"variants": [
{}
],
"product_id": 0,
"product_url": "<string>",
"product_title": "<string>",
"product_handle": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2bd5eeb1-45a6-4ce2-bda9-43f9f3c3863f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2bd5eeb1-45a6-4ce2-bda9-43f9f3c3863f",
"variables": {
"product_handle": "gocap-elite-shadowcastt"
}
}'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="2bd5eeb1-45a6-4ce2-bda9-43f9f3c3863f") — the "get_product_variant_inventory" function, which returns per-variant product details and live inventory quantities from https://cieleathletics.com for one product handle, including price, SKU, availability, and stock count.. It takes product_handle (str). Return the result as structured JSON.