Marketplace
No threads yet
Live

decode_inci_list

incidecoder.com

Submits a raw INCI ingredient list to https://incidecoder.com and returns structured decoded analysis with ingredient table, irritancy/comedogenicity, highlights, and key ingredient categories.

Parameters2
Runs8
Updated8d ago
Failing8 runs · 50% 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 decode_inci_list?

Submits a raw INCI ingredient list to https://incidecoder.com and returns structured decoded analysis with ingredient table, irritancy/comedogenicity, highlights, and key ingredient categories. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass inci_text, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "analysis": {
    "is_empty": true,
    "bad_ratio": 0,
    "highlights": [
      {
        "tag": "<string>",
        "description": "<string>"
      }
    ],
    "has_duplicates": true,
    "input_inci_text": "<string>",
    "ingredient_table": [
      {
        "url": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "irritancy": "<string>",
        "what_it_does": [
          {
            "url": "<string>",
            "name": "<string>",
            "slug": "<string>"
          }
        ],
        "comedogenicity": "<string>",
        "inci_decoder_rating": "<string>"
      }
    ],
    "normalized_texts": [
      "<string>"
    ],
    "open_correction_dialog": true,
    "key_ingredient_categories": [
      {
        "url": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "ingredients": [
          {
            "url": "<string>",
            "name": "<string>",
            "slug": "<string>"
          }
        ]
      }
    ],
    "other_ingredient_categories": [
      {
        "url": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "ingredients": [
          {
            "url": "<string>",
            "name": "<string>",
            "slug": "<string>"
          }
        ]
      }
    ]
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4acb5a35-2d8d-49a4-8553-188a3b765a7d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4acb5a35-2d8d-49a4-8553-188a3b765a7d",
    "variables": {
        "inci_text": "Water, Oryza Sativa (Rice) Extract (30%), Dibutyl Adipate, Propanediol, Diethylamino Hydroxybenzoyl Hexyl Benzoate, Polymethylsilsesquioxane, Ethylhexyl Triazone, Niacinamide, Methylene Bis-Benzotriazolyl Tetramethylbutylphenol, Coco-Caprylate/Caprate, Caprylyl Methicone, Diethylhexyl Butamido Triazone, Glycerin, Butylene Glycol, Oryza Sativa (Rice) Germ Extract, Camellia Sinensis Leaf Extract, Lactobacillus/Pumpkin Ferment Extract, Bacillus/Soybean Ferment Extract, Saccharum Officinarum (Sugarcane) Extract, Macrocystis Pyrifera (Kelp) Extract",
        "timeout_seconds": 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="4acb5a35-2d8d-49a4-8553-188a3b765a7d") — the "decode_inci_list" function, which submits a raw INCI ingredient list to https://incidecoder.com and returns structured decoded analysis with ingredient table, irritancy/comedogenicity, highlights, and key ingredient categories..

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