Live
list_catalog_products
uniqlo.comReturns paginated product summaries from https://www.uniqlo.com with US pricing, availability, product URLs and main images, optionally filtered by department.
Parameters3
Runs7
Updated3d ago
Operational7 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
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 paginated product summaries from https://www.uniqlo.com with US pricing, availability, product URLs and main images, optionally filtered by department. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass section, offset, count and get the result back without maintaining a scraper.
Response
{
"count": 0,
"total": 0,
"offset": 0,
"section": "<string>",
"has_more": true,
"products": [
{
"title": "<string>",
"section": "<string>",
"currency": "<string>",
"base_price": 0,
"product_id": "<string>",
"sale_price": 0,
"main_image_url": "<string>",
"product_page_url": "<string>",
"availability_status": "<string>"
}
],
"next_offset": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ccb90189-821c-4133-8449-4be9cb652639/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ccb90189-821c-4133-8449-4be9cb652639",
"variables": {
"section": "all",
"offset": 0,
"count": 24
}
}'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="ccb90189-821c-4133-8449-4be9cb652639") — the "list_catalog_products" function, which returns paginated product summaries from https://www.uniqlo.com with US pricing, availability, product URLs and main images, optionally filtered by department.. It takes section (str), offset (int), count (int). Return the result as structured JSON.