Marketplace
No threads yet
Live

list_official_shops

shopee.com.br

Returns offset-paginated official and branded shops from https://shopee.com.br with total count, shop and brand IDs, names, logos, types, and destination URLs.

Parameters2
Runs4
Updated51m ago
Operational4 runs · 100% succeeded
30 days agotoday

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 offset-paginated official and branded shops from https://shopee.com.br with total count, shop and brand IDs, names, logos, types, and destination URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass offset, limit and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "limit": 0,
  "shops": [
    {}
  ],
  "total": 0,
  "offset": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6dcd41d1-1a40-4e35-98ec-c0939a5b2cc7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6dcd41d1-1a40-4e35-98ec-c0939a5b2cc7",
    "variables": {
        "offset": 0,
        "limit": 23
    }
}'

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="6dcd41d1-1a40-4e35-98ec-c0939a5b2cc7") — the "list_official_shops" function, which returns offset-paginated official and branded shops from https://shopee.com.br with total count, shop and brand IDs, names, logos, types, and destination URLs..

It takes offset (int), limit (int). Return the result as structured JSON.