get_ah_product_details
ah.beRetrieves detailed metadata for a specific product on https://www.ah.be using its numeric product ID. Returns summary description, feature highlights, pricing, multi-size images, availability, category path, and additional product details exposed on the product page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ah_product_details?
Retrieves detailed metadata for a specific product on https://www.ah.be using its numeric product ID. Returns summary description, feature highlights, pricing, multi-size images, availability, category path, and additional product details exposed on the product page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id and get the result back without maintaining a scraper.
Response
{
"product": {},
"product_id": 0,
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c6310cc2-4508-4c06-862b-a6333ad4a026/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c6310cc2-4508-4c06-862b-a6333ad4a026",
"variables": {
"product_id": 33693
}
}'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="c6310cc2-4508-4c06-862b-a6333ad4a026") — the "get_ah_product_details" function, which retrieves detailed metadata for a specific product on https://www.ah.be using its numeric product ID. Returns summary description, feature highlights, pricing, multi-size images, availability, category path, and additional product details exposed on the product page.. It takes product_id (int). Return the result as structured JSON.