Marketplace
No threads yet
LiveUnverified

search_products

shopee.co.id

Searches https://shopee.co.id for products by keyword and returns the complete non-empty product records, image links, and listing URLs. Shopee's 90309999 protection can block some searches, in which case the response reports the block explicitly.

Parameters3
Runs12
Updated9d ago
Operational12 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 search_products?

Searches https://shopee.co.id for products by keyword and returns the complete non-empty product records, image links, and listing URLs. Shopee's 90309999 protection can block some searches, in which case the response reports the block explicitly. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, limit, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "limit": 0,
  "source": "<string>",
  "status": "<string>",
  "keyword": "<string>",
  "no_more": true,
  "products": [
    {}
  ],
  "error_code": 0,
  "total_count": 0,
  "error_message": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c17f76dd-d914-4f2b-86b3-f894fb619396/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c17f76dd-d914-4f2b-86b3-f894fb619396",
    "variables": {
        "keyword": "sepatu",
        "limit": 20,
        "page": 1
    }
}'

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="c17f76dd-d914-4f2b-86b3-f894fb619396") — the "search_products" function, which searches https://shopee.co.id for products by keyword and returns the complete non-empty product records, image links, and listing URLs. Shopee's 90309999 protection can block some searches, in which case the response reports the block explicitly..

It takes keyword (str), limit (int), page (int). Return the result as structured JSON.