get_material_details
ulprospector.comRetrieves full material detail from https://ulprospector.com for a specific UL Prospector product using supplier_id, product_id, and slug. Returns product identity, INCI, description, supplier info, and available technical document links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_material_details?
Retrieves full material detail from https://ulprospector.com for a specific UL Prospector product using supplier_id, product_id, and slug. Returns product identity, INCI, description, supplier info, and available technical document links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, supplier_id, slug, industry, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"documents": [
{
"url": "<string>",
"name": "<string>"
}
],
"inci_name": "<string>",
"company_id": "<string>",
"detail_url": "<string>",
"product_id": "<string>",
"properties": {},
"description": "<string>",
"product_name": "<string>",
"product_slug": "<string>",
"supplier_url": "<string>",
"industry_slug": "<string>",
"supplier_name": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3f9c5e00-73ab-4f75-af4e-e6e84ad630d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3f9c5e00-73ab-4f75-af4e-e6e84ad630d7",
"variables": {
"product_id": "7813208",
"supplier_id": "128177",
"slug": "Vitamin-C",
"industry": "PersonalCare",
"timeout_seconds": 35
}
}'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="3f9c5e00-73ab-4f75-af4e-e6e84ad630d7") — the "get_material_details" function, which retrieves full material detail from https://ulprospector.com for a specific UL Prospector product using supplier_id, product_id, and slug. Returns product identity, INCI, description, supplier info, and available technical document links.. It takes product_id (str), supplier_id (str), slug (str), industry (str), timeout_seconds (int). Return the result as structured JSON.