Marketplace
No threads yet
Live

browse_industry_materials

ulprospector.com

Browses materials in a UL Prospector industry on https://ulprospector.com using an internal single-character query to return broad material records with supplier, INCI, and detail identifiers. Supports start-based pagination in batches of about 100 results.

Parameters3
Runs14
Updated8d ago
Degraded14 runs · 78.5% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is browse_industry_materials?

Browses materials in a UL Prospector industry on https://ulprospector.com using an internal single-character query to return broad material records with supplier, INCI, and detail identifiers. Supports start-based pagination in batches of about 100 results. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass industry, start, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "start": 0,
  "results": [
    {}
  ],
  "has_more": true,
  "page_size": 0,
  "next_start": 0,
  "industry_name": "<string>",
  "industry_slug": "<string>",
  "total_results": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6e6e2e61-aaaf-46b1-94bb-213f8f6ef088/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6e6e2e61-aaaf-46b1-94bb-213f8f6ef088",
    "variables": {
        "industry": "PersonalCare",
        "start": 0,
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="6e6e2e61-aaaf-46b1-94bb-213f8f6ef088") — the "browse_industry_materials" function, which browses materials in a UL Prospector industry on https://ulprospector.com using an internal single-character query to return broad material records with supplier, INCI, and detail identifiers. Supports start-based pagination in batches of about 100 results..

It takes industry (str), start (int), timeout_seconds (int). Return the result as structured JSON.