list_product_collections
gamesir.comRetrieves all published product collections and categories from https://gamesir.com. Returns collection records with id, handle, title, description, product counts, and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_product_collections?
Retrieves all published product collections and categories from https://gamesir.com. Returns collection records with id, handle, title, description, product counts, and all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page_size, max_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"source": "<string>",
"endpoint": "<string>",
"page_size": 0,
"collections": [
{}
],
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/113673d6-5100-4310-827a-e7a196ace062/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "113673d6-5100-4310-827a-e7a196ace062",
"variables": {
"page_size": 250,
"max_pages": 10,
"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="113673d6-5100-4310-827a-e7a196ace062") — the "list_product_collections" function, which retrieves all published product collections and categories from https://gamesir.com. Returns collection records with id, handle, title, description, product counts, and all non-empty source fields.. It takes page_size (int), max_pages (int), timeout_seconds (int). Return the result as structured JSON.