Marketplace
No threads yet
Live

get_product_details

incidecoder.com

Gets full cosmetic product details from https://incidecoder.com, including composition, per-ingredient functions and safety scores, highlights, key categories, descriptions, and similar products. Missing slugs return a stale_input record with kind input_not_found.

Parameters1
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 get_product_details?

Gets full cosmetic product details from https://incidecoder.com, including composition, per-ingredient functions and safety scores, highlights, key categories, descriptions, and similar products. Missing slugs return a stale_input record with kind input_not_found. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.

Response

{
  "product": {
    "url": "<string>",
    "slug": "<string>",
    "type": "<string>",
    "brand": "<string>",
    "title": "<string>",
    "details": "<string>",
    "brand_url": "<string>",
    "full_name": "<string>",
    "image_url": "<string>",
    "brand_slug": "<string>",
    "highlights": [
      "<string>"
    ],
    "ingredients": [
      {
        "url": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "rating": "<string>",
        "position": 0,
        "functions": [
          {
            "url": "<string>",
            "name": "<string>",
            "slug": "<string>"
          }
        ],
        "irritancy": "<string>",
        "also_called": [
          "<string>"
        ],
        "description": "<string>",
        "comedogenicity": "<string>"
      }
    ],
    "uploaded_by": "<string>",
    "uploaded_date": "<string>",
    "ingredient_count": 0,
    "similar_products": [
      {
        "url": "<string>",
        "slug": "<string>",
        "brand": "<string>",
        "title": "<string>",
        "image_url": "<string>"
      }
    ],
    "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>"
          }
        ]
      }
    ]
  },
  "stale_input": {
    "kind": "<string>",
    "input": "<string>",
    "message": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/314ae704-22a8-4116-a5b7-17bd122adb8d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "314ae704-22a8-4116-a5b7-17bd122adb8d",
    "variables": {
        "slug": "beauty-of-joseon-sunscreen-2"
    }
}'

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="314ae704-22a8-4116-a5b7-17bd122adb8d") — the "get_product_details" function, which gets full cosmetic product details from https://incidecoder.com, including composition, per-ingredient functions and safety scores, highlights, key categories, descriptions, and similar products. Missing slugs return a stale_input record with kind input_not_found..

It takes slug (str). Return the result as structured JSON.