list_collection_products
itsybitsy.inRetrieves products from a specific collection handle on https://itsybitsy.in with page-based pagination and optional multi-page auto-iteration. Returns product summaries with non-empty source fields including variants, images, options, and pricing.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_collection_products?
Retrieves products from a specific collection handle on https://itsybitsy.in with page-based pagination and optional multi-page auto-iteration. Returns product summaries with non-empty source fields including variants, images, options, and pricing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass collection_handle, page, limit, max_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"products": [
{}
],
"exhausted": true,
"next_page": 0,
"page_size": 0,
"page_start": 0,
"pages_fetched": 0,
"total_products": 0,
"collection_handle": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e979836f-1540-4efc-8af2-e1436766c29e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e979836f-1540-4efc-8af2-e1436766c29e",
"variables": {
"collection_handle": "acrylic-colours-10ml",
"page": 1,
"limit": 50,
"max_pages": 2,
"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="e979836f-1540-4efc-8af2-e1436766c29e") — the "list_collection_products" function, which retrieves products from a specific collection handle on https://itsybitsy.in with page-based pagination and optional multi-page auto-iteration. Returns product summaries with non-empty source fields including variants, images, options, and pricing.. It takes collection_handle (str), page (int), limit (int), max_pages (int), timeout_seconds (int). Return the result as structured JSON.