get_product_details_by_handle
gamesir.comFetches full product detail from https://gamesir.com for a single product handle slug. Returns all non-empty product fields including HTML description, variants, images, and options, or input_not_found when the handle is not published.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details_by_handle?
Fetches full product detail from https://gamesir.com for a single product handle slug. Returns all non-empty product fields including HTML description, variants, images, and options, or input_not_found when the handle is not published. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_handle, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"handle": "<string>",
"source": "<string>",
"product": {},
"input_not_found": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/b699535c-1b44-4514-bde9-ff2fa77bd316/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b699535c-1b44-4514-bde9-ff2fa77bd316",
"variables": {
"product_handle": "gamesir-tarantula-8k-pc",
"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="b699535c-1b44-4514-bde9-ff2fa77bd316") — the "get_product_details_by_handle" function, which fetches full product detail from https://gamesir.com for a single product handle slug. Returns all non-empty product fields including HTML description, variants, images, and options, or input_not_found when the handle is not published.. It takes product_handle (str), timeout_seconds (int). Return the result as structured JSON.