Marketplace
No threads yet
Live

search_materials

ulprospector.com

Searches https://ulprospector.com for materials by keyword within a supported industry and returns paginated product records, supplier data, source properties, and detail identifiers. Supports chemical, plastics, additives, and metals industry slugs.

Parameters4
Runs14
Updated10d 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 search_materials?

Searches https://ulprospector.com for materials by keyword within a supported industry and returns paginated product records, supplier data, source properties, and detail identifiers. Supports chemical, plastics, additives, and metals industry slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass industry, query, start, page_size and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "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/55207356-bd20-4c1a-8997-5bb8df7a41b1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "55207356-bd20-4c1a-8997-5bb8df7a41b1",
    "variables": {
        "industry": "PersonalCare",
        "query": "vitamin c",
        "start": 0,
        "page_size": 25
    }
}'

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="55207356-bd20-4c1a-8997-5bb8df7a41b1") — the "search_materials" function, which searches https://ulprospector.com for materials by keyword within a supported industry and returns paginated product records, supplier data, source properties, and detail identifiers. Supports chemical, plastics, additives, and metals industry slugs..

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