Marketplace
No threads yet
Live

list_category_products

urbanoutfitters.com

Browses a category on https://urbanoutfitters.com by URL slug. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, availability signals, and the category's current product count.

Parameters3
Runs14
Updated10d ago
Failing14 runs · 64.2% 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_category_products?

Browses a category on https://urbanoutfitters.com by URL slug. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, availability signals, and the category's current product count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, start, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "limit": 0,
  "start": 0,
  "source": "<string>",
  "has_more": true,
  "products": [
    {}
  ],
  "next_start": 0,
  "total_count": 0,
  "category_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/25c9a449-16b3-4a0a-ad6a-74fff6625309/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "25c9a449-16b3-4a0a-ad6a-74fff6625309",
    "variables": {
        "category_slug": "womens-clothing",
        "start": 0,
        "limit": 12
    }
}'

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="25c9a449-16b3-4a0a-ad6a-74fff6625309") — the "list_category_products" function, which browses a category on https://urbanoutfitters.com by URL slug. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, availability signals, and the category's current product count..

It takes category_slug (str), start (int), limit (int). Return the result as structured JSON.