Live
list_sale_items
urbanoutfitters.comReturns the current site-wide sale listing from https://urbanoutfitters.com with total count, pagination, prices, discounts, images, colors, reviews, and availability.
Parameters2
Runs6
Updated3d ago
Operational6 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_sale_items?
Returns the current site-wide sale listing from https://urbanoutfitters.com with total count, pagination, prices, discounts, images, colors, reviews, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start, limit and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"count": 0,
"limit": 0,
"start": 0,
"source": "<string>",
"has_more": true,
"products": [
{}
],
"next_start": 0,
"category_id": "<string>",
"total_count": 0,
"category_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/edacbc86-0298-4ac5-99e9-863b16cb7fb1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "edacbc86-0298-4ac5-99e9-863b16cb7fb1",
"variables": {
"start": 0,
"limit": 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="edacbc86-0298-4ac5-99e9-863b16cb7fb1") — the "list_sale_items" function, which returns the current site-wide sale listing from https://urbanoutfitters.com with total count, pagination, prices, discounts, images, colors, reviews, and availability.. It takes start (int), limit (int). Return the result as structured JSON.