Marketplace
No threads yet
Live

get_shop_reliability_metrics

shopee.co.id

Returns affiliate-focused shop rating, response, cancellation, follower, badge, and profile metadata from https://shopee.co.id with percentage metrics as decimals.

Parameters2
Runs9
Updated3d ago
Operational9 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 get_shop_reliability_metrics?

Returns affiliate-focused shop rating, response, cancellation, follower, badge, and profile metadata from https://shopee.co.id with percentage metrics as decimals. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass shop_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "badges": {
    "official_shop": true,
    "shopee_verified": true,
    "preferred_plus_seller": true
  },
  "rating": {
    "bad_rate": 0,
    "bad_count": 0,
    "good_rate": 0,
    "good_count": 0,
    "normal_rate": 0,
    "total_count": 0,
    "normal_count": 0,
    "average_stars": 0
  },
  "source": "<string>",
  "shop_id": 0,
  "user_id": 0,
  "metadata": {},
  "provider": "<string>",
  "response": {
    "chat_enabled": true,
    "response_rate": 0,
    "response_time_seconds": 0
  },
  "username": "<string>",
  "followers": {
    "follower_count": 0,
    "following_count": 0
  },
  "shop_name": "<string>",
  "captured_at": "<string>",
  "fulfillment": {
    "cancellation_rate": 0,
    "preparation_time_seconds": 0,
    "cancellation_warning_threshold": 0,
    "cancellation_visibility_threshold": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7ce1fc26-f762-4422-8b2b-0a3484bd42ba/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7ce1fc26-f762-4422-8b2b-0a3484bd42ba",
    "variables": {
        "shop_id": 440963114,
        "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="7ce1fc26-f762-4422-8b2b-0a3484bd42ba") — the "get_shop_reliability_metrics" function, which returns affiliate-focused shop rating, response, cancellation, follower, badge, and profile metadata from https://shopee.co.id with percentage metrics as decimals..

It takes shop_id (int), timeout_seconds (int). Return the result as structured JSON.