Marketplace
No threads yet
Live

search_products_and_ingredients

incidecoder.com

Searches https://incidecoder.com for cosmetic products or ingredients and returns paginated matches with titles, brands, slugs, URLs, and record types. Product searches can require or exclude ingredient slugs.

Parameters6
Runs13
Updated10d ago
Operational13 runs · 100% 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_products_and_ingredients?

Searches https://incidecoder.com for cosmetic products or ingredients and returns paginated matches with titles, brands, slugs, URLs, and record types. Product searches can require or exclude ingredient slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, activetab, page, included_ingredient_slugs, excluded_ingredient_slugs, include_mode and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "results": [
    {
      "url": "<string>",
      "slug": "<string>",
      "type": "<string>",
      "brand": "<string>",
      "title": "<string>"
    }
  ],
  "has_next": true,
  "activetab": "<string>",
  "next_page": 0,
  "has_previous": true,
  "include_mode": "<string>",
  "result_count": 0,
  "previous_page": 0,
  "excluded_ingredient_slugs": [
    "<string>"
  ],
  "included_ingredient_slugs": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/487d3563-faba-4855-934a-39c3d602b37a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "487d3563-faba-4855-934a-39c3d602b37a",
    "variables": {
        "query": "niacinamide",
        "activetab": "products",
        "page": 1,
        "included_ingredient_slugs": [],
        "excluded_ingredient_slugs": [],
        "include_mode": "all"
    }
}'

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="487d3563-faba-4855-934a-39c3d602b37a") — the "search_products_and_ingredients" function, which searches https://incidecoder.com for cosmetic products or ingredients and returns paginated matches with titles, brands, slugs, URLs, and record types. Product searches can require or exclude ingredient slugs..

It takes query (str), activetab (str), page (int), included_ingredient_slugs (list[str]), excluded_ingredient_slugs (list[str]), include_mode (str). Return the result as structured JSON.