search_products
uniqlo.comSearches the US product catalog on https://www.uniqlo.com and returns paginated full-text matches with complete product records, prices, colors, sizes, images, and ratings. Optionally filters results to Women, Men, Kids, or Baby.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches the US product catalog on https://www.uniqlo.com and returns paginated full-text matches with complete product records, prices, colors, sizes, images, and ratings. Optionally filters results to Women, Men, Kids, or Baby. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, offset, limit, section and get the result back without maintaining a scraper.
Response
{
"count": 0,
"limit": 0,
"query": "<string>",
"total": 0,
"offset": 0,
"section": "<string>",
"has_more": true,
"products": [
{}
],
"relaxed_queries": [
"<string>"
],
"related_keywords": [
"<string>"
],
"text_search_hit_count": 0,
"vector_search_hit_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/138315ae-cc8d-49d1-b80e-e7bd74e9e700/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "138315ae-cc8d-49d1-b80e-e7bd74e9e700",
"variables": {
"query": "linen shirt",
"offset": 0,
"limit": 12,
"section": "all"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="138315ae-cc8d-49d1-b80e-e7bd74e9e700") — the "search_products" function, which searches the US product catalog on https://www.uniqlo.com and returns paginated full-text matches with complete product records, prices, colors, sizes, images, and ratings. Optionally filters results to Women, Men, Kids, or Baby.. It takes query (str), offset (int), limit (int), section (str). Return the result as structured JSON.