Marketplace
No threads yet
Live

list_catalog_products

inlieuofficial.com

Returns every store-catalog product from http://www.inlieuofficial.com, including complete non-empty product details, pricing, live availability, product URLs, images, options, and variants.

Parameters0
Runs11
Updated10d ago
Operational11 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_catalog_products?

Returns every store-catalog product from http://www.inlieuofficial.com, including complete non-empty product details, pricing, live availability, product URLs, images, options, and variants. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "products": [
    {
      "id": "<string>",
      "title": "<string>",
      "handle": "<string>",
      "images": [
        {
          "url": "<string>",
          "width": 0,
          "height": 0,
          "alt_text": "<string>"
        }
      ],
      "options": [
        {
          "id": "<string>",
          "name": "<string>",
          "values": [
            "<string>"
          ]
        }
      ],
      "pricing": {
        "maximum": {
          "amount": "<string>",
          "currency_code": "<string>"
        },
        "minimum": {
          "amount": "<string>",
          "currency_code": "<string>"
        }
      },
      "variants": [
        {
          "id": "<string>",
          "price": {
            "amount": "<string>",
            "currency_code": "<string>"
          },
          "title": "<string>",
          "selected_options": [
            {
              "name": "<string>",
              "value": "<string>"
            }
          ],
          "available_for_sale": true,
          "availability_status": "<string>"
        }
      ],
      "updated_at": "<string>",
      "colour_name": {
        "type": "<string>",
        "value": "<any>"
      },
      "description": "<string>",
      "model_notes": {
        "type": "<string>",
        "value": "<any>"
      },
      "product_url": "<string>",
      "featured_image": {
        "url": "<string>",
        "width": 0,
        "height": 0,
        "alt_text": "<string>"
      },
      "main_image_url": "<string>",
      "description_html": "<string>",
      "long_description": {
        "type": "<string>",
        "value": "<any>"
      },
      "care_instructions": {
        "type": "<string>",
        "value": "<any>"
      },
      "product_base_name": {
        "type": "<string>",
        "value": "<any>"
      },
      "size_chart_values": {
        "type": "<string>",
        "value": "<any>"
      },
      "available_for_sale": true,
      "availability_status": "<string>"
    }
  ],
  "catalog_url": "<string>",
  "product_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ba079d12-f617-4576-a7e4-810209ccceef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ba079d12-f617-4576-a7e4-810209ccceef",
    "variables": {}
}'

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="ba079d12-f617-4576-a7e4-810209ccceef") — the "list_catalog_products" function, which returns every store-catalog product from http://www.inlieuofficial.com, including complete non-empty product details, pricing, live availability, product URLs, images, options, and variants..

It takes no parameters. Return the result as structured JSON.