Marketplace
No threads yet
Live

get_category_tree

uniqlo.com

Retrieves the complete current US store category hierarchy from https://www.uniqlo.com. Returns Women, Men, Kids, and Baby sections with every top-level category, nested subcategory, taxonomy identifier, and navigation path.

Parameters0
Runs13
Updated10d ago
Operational13 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_category_tree?

Retrieves the complete current US store category hierarchy from https://www.uniqlo.com. Returns Women, Men, Kids, and Baby sections with every top-level category, nested subcategory, taxonomy identifier, and navigation path. 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

{
  "sections": [
    {
      "id": 0,
      "name": "<string>",
      "url_path": "<string>",
      "categories": [
        {
          "id": 0,
          "key": "<string>",
          "name": "<string>",
          "parents": [
            {
              "id": 0,
              "key": "<string>",
              "name": "<string>"
            }
          ],
          "url_path": "<string>",
          "subcategories": [
            {
              "id": 0,
              "key": "<string>",
              "name": "<string>",
              "parents": [
                {
                  "id": 0,
                  "key": "<string>",
                  "name": "<string>"
                }
              ],
              "url_path": "<string>",
              "subcategories": [
                {
                  "id": 0,
                  "key": "<string>",
                  "name": "<string>",
                  "parents": [
                    {
                      "id": 0,
                      "key": "<string>",
                      "name": "<string>"
                    }
                  ],
                  "url_path": "<string>"
                }
              ]
            }
          ]
        }
      ],
      "gender_key": "<string>"
    }
  ],
  "source_url": "<string>",
  "section_count": 0,
  "subcategory_count": 0,
  "leaf_category_count": 0,
  "top_level_category_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8320575f-f8f4-449b-b736-7b2006f4eecb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8320575f-f8f4-449b-b736-7b2006f4eecb",
    "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="8320575f-f8f4-449b-b736-7b2006f4eecb") — the "get_category_tree" function, which retrieves the complete current US store category hierarchy from https://www.uniqlo.com. Returns Women, Men, Kids, and Baby sections with every top-level category, nested subcategory, taxonomy identifier, and navigation path..

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