Marketplace
No threads yet
Live

list_featured_ingredients

incidecoder.com

Returns paginated featured ingredient summaries from https://incidecoder.com with names, slugs, functions, profile links, and images; each page contains up to 28 records.

Parameters2
Runs6
Updated3d ago
Operational6 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 list_featured_ingredients?

Returns paginated featured ingredient summaries from https://incidecoder.com with names, slugs, functions, profile links, and images; each page contains up to 28 records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "ingredients": [
    {
      "url": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "image_url": "<string>",
      "what_it_does": [
        "<string>"
      ]
    }
  ],
  "ingredient_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ae2f2c67-2bdf-4b6c-aa24-139f67eee97c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ae2f2c67-2bdf-4b6c-aa24-139f67eee97c",
    "variables": {
        "page": 1,
        "timeout_seconds": 20
    }
}'

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="ae2f2c67-2bdf-4b6c-aa24-139f67eee97c") — the "list_featured_ingredients" function, which returns paginated featured ingredient summaries from https://incidecoder.com with names, slugs, functions, profile links, and images; each page contains up to 28 records..

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