# Shopee โ€” Zapi reference > Data publik Shopee Indonesia โ€” profil toko/seller & statistik storefront (followers, rating, response rate). Catatan: pencarian & detail produk tidak tersedia (diblokir upstream untuk egress non-residential). **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/marketplace/shopee - Endpoint catalog: https://zpi.web.id/category/marketplace - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Shopee **Category:** marketplace ยท **Slug:** `shopee` **Detail page:** https://zpi.web.id/api/marketplace/shopee Data publik Shopee Indonesia โ€” profil toko/seller & statistik storefront (followers, rating, response rate). Catatan: pencarian & detail produk tidak tersedia (diblokir upstream untuk egress non-residential). **Tags:** shopee, marketplace, ecommerce, indonesia, toko, seller ### Shop Detail Profil & statistik toko Shopee dari username, shop id, atau URL toko. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:shopee/shop/:username` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `username` | string | path | yes | Shopee shop username, shop id (digits), atau URL toko (shopee.co.id/ atau shopee.co.id/shop/). | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:shopee/shop/:username" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:shopee/shop/:username", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:shopee/shop/:username", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "shop": { "url": "https://shopee.co.id/shopee_id", "name": "Shopee_id", "avatar": "https://down-id.img.susercontent.com/file/181594b985f5e78bfd451a016cad78fb", "shopId": 1289539, "userId": 1290517, "country": "ID", "joinedAt": 1445596292, "location": "KOTA JAKARTA SELATAN", "username": "shopee_id", "itemCount": 0, "ratingBad": 92, "isVerified": false, "ratingGood": 583, "ratingStar": 4.173645, "description": "Beli Semua di Shopee, Promo Seru, Paling Lengkap! \n\nCS: 1500702", "joinedAtIso": "2015-10-23T10:31:32.000Z", "chatDisabled": false, "lastActiveAt": 1753810377, "ratingNormal": 152, "responseRate": 100, "emailVerified": true, "followerCount": 816334, "phoneVerified": true, "followingCount": 8, "isOfficialShop": true, "isShopeeChoice": false, "isPreferredPlus": false, "lastActiveAtIso": "2025-07-29T17:32:57.000Z", "cancellationRate": 0, "responseTimeSeconds": 641 } } ``` --- _Generated: 2026-08-02T19:23:35.329Z_