Marketplace
No threads yet
Live

get_aldi_product_details

aldi.be

Fetches detailed ALDI Belgium product metadata from https://www.aldi.be for one numeric product ID or product slug. Returns pricing, promotional validity, category tree, and all available image assets, or stale_input when no product matches.

Parameters2
Runs12
Updated8d ago
Operational12 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_aldi_product_details?

Fetches detailed ALDI Belgium product metadata from https://www.aldi.be for one numeric product ID or product slug. Returns pricing, promotional validity, category tree, and all available image assets, or stale_input when no product matches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id_or_slug, language and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "product": {},
  "language": "<string>",
  "input_value": "<string>",
  "stale_input": {
    "kind": "<string>",
    "message": "<string>",
    "input_value": "<string>"
  },
  "resolved_product_id": "<string>",
  "resolved_product_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b51dfbdb-b4a4-45ad-a7fb-275537baf374/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b51dfbdb-b4a4-45ad-a7fb-275537baf374",
    "variables": {
        "product_id_or_slug": "0601",
        "language": "nl"
    }
}'

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="b51dfbdb-b4a4-45ad-a7fb-275537baf374") — the "get_aldi_product_details" function, which fetches detailed ALDI Belgium product metadata from https://www.aldi.be for one numeric product ID or product slug. Returns pricing, promotional validity, category tree, and all available image assets, or stale_input when no product matches..

It takes product_id_or_slug (str), language (str). Return the result as structured JSON.