search_products
urbanoutfitters.comSearches the Urban Outfitters catalog at https://urbanoutfitters.com by keyword. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, and availability signals.
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 Urban Outfitters catalog at https://urbanoutfitters.com by keyword. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, and availability signals. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, start, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"limit": 0,
"query": "<string>",
"start": 0,
"source": "<string>",
"has_more": true,
"products": [
{}
],
"next_start": 0,
"total_count": 0,
"corrected_query": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e1f4b42a-a75c-4d9c-9e16-b463ab2cdd13/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e1f4b42a-a75c-4d9c-9e16-b463ab2cdd13",
"variables": {
"query": "lamp",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="e1f4b42a-a75c-4d9c-9e16-b463ab2cdd13") — the "search_products" function, which searches the Urban Outfitters catalog at https://urbanoutfitters.com by keyword. Returns paginated product summaries with prices, images, clean URLs, color metadata, reviews, and availability signals.. It takes query (str), start (int), limit (int). Return the result as structured JSON.