list_category_products
pullandbear.comReturns paginated product summaries for a Pull & Bear category from https://www.pullandbear.com with pricing, colors, sizes, images, availability, taxonomy, and source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_category_products?
Returns paginated product summaries for a Pull & Bear category from https://www.pullandbear.com with pricing, colors, sizes, images, availability, taxonomy, and source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_id, offset, limit, store_id, catalog_id, language_id, country_path, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"total": 0,
"offset": 0,
"has_more": true,
"products": [
{}
],
"store_id": "<string>",
"catalog_id": "<string>",
"category_id": "<string>",
"language_id": "<string>",
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2a5cc20d-8d75-496f-9c3d-bb5e92ce9a8e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2a5cc20d-8d75-496f-9c3d-bb5e92ce9a8e",
"variables": {
"category_id": "1030204636",
"offset": 0,
"limit": 10,
"store_id": "24009477",
"catalog_id": "20309455",
"language_id": "-15",
"country_path": "us",
"timeout_seconds": 30
}
}'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="2a5cc20d-8d75-496f-9c3d-bb5e92ce9a8e") — the "list_category_products" function, which returns paginated product summaries for a Pull & Bear category from https://www.pullandbear.com with pricing, colors, sizes, images, availability, taxonomy, and source fields.. It takes category_id (str), offset (int), limit (int), store_id (str), catalog_id (str), language_id (str), country_path (str), timeout_seconds (int). Return the result as structured JSON.