Live
list_official_shops
shopee.co.idReturns category-filtered, offset-paginated Shopee Mall shops from https://shopee.co.id with complete non-empty shop, logo, brand, user, and identifier fields.
Parameters4
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_official_shops?
Returns category-filtered, offset-paginated Shopee Mall shops from https://shopee.co.id with complete non-empty shop, logo, brand, user, and identifier 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, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"limit": 0,
"shops": [
{}
],
"total": 0,
"offset": 0,
"source": "<string>",
"has_more": true,
"category_id": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/da6f785b-8d35-48bb-8f9b-3088b02e45af/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "da6f785b-8d35-48bb-8f9b-3088b02e45af",
"variables": {
"category_id": 11044258,
"offset": 0,
"limit": 20,
"timeout_seconds": 20
}
}'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="da6f785b-8d35-48bb-8f9b-3088b02e45af") — the "list_official_shops" function, which returns category-filtered, offset-paginated Shopee Mall shops from https://shopee.co.id with complete non-empty shop, logo, brand, user, and identifier fields.. It takes category_id (int), offset (int), limit (int), timeout_seconds (int). Return the result as structured JSON.