get_product_details
metztea.hkReturns detailed specifications for a METZ Tea product by URL handle from https://www.metztea.hk, including ingredients, origin, caffeine, antioxidants, weight, description, product type, vendor, and tags when available.
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 detailed specifications for a METZ Tea product by URL handle from https://www.metztea.hk, including ingredients, origin, caffeine, antioxidants, weight, description, product type, vendor, and tags when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle and get the result back without maintaining a scraper.
Response
{
"name": "<string>",
"tags": [
"<string>"
],
"handle": "<string>",
"origin": "<string>",
"vendor": "<string>",
"weight": "<string>",
"description": "<string>",
"ingredients": "<string>",
"product_url": "<string>",
"product_type": "<string>",
"specifications": {},
"caffeine_content": "<string>",
"antioxidant_level": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/210a7076-1293-467d-9109-9d87dbb305bf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "210a7076-1293-467d-9109-9d87dbb305bf",
"variables": {
"handle": "jasmine-dragon-tears"
}
}'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="210a7076-1293-467d-9109-9d87dbb305bf") — the "get_product_details" function, which returns detailed specifications for a METZ Tea product by URL handle from https://www.metztea.hk, including ingredients, origin, caffeine, antioxidants, weight, description, product type, vendor, and tags when available.. It takes handle (str). Return the result as structured JSON.