Shopee Shop
curl --request GET \
--url https://api.example.com/shopee/shopimport requests
url = "https://api.example.com/shopee/shop"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/shopee/shop', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/shopee/shop",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/shopee/shop"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/shopee/shop")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/shopee/shop")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyShopee
Shopee Shop
Get shop information from Shopee Indonesia by shop ID
GET
/
shopee
/
shop
Shopee Shop
curl --request GET \
--url https://api.example.com/shopee/shopimport requests
url = "https://api.example.com/shopee/shop"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/shopee/shop', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/shopee/shop",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/shopee/shop"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/shopee/shop")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/shopee/shop")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyOverview
The/shopee/shop endpoint retrieves shop/seller information from Shopee Indonesia (shopee.co.id) including shop details, ratings, follower count, and verification status.
This endpoint uses browser rendering to bypass anti-bot protection. Requests may take longer compared to renderless endpoints.
Currently only Indonesia (country=id) is supported. More Southeast Asian markets will be added in future updates.
Credits
25 credits per successful request.Parameters
Query Parameters
string
required
The Shopee shop/seller ID (e.g., “12651109”).
string
required
Country code. Currently only
id (Indonesia) is supported.Example Requests
curl -X GET "https://api.scrapengine.io/api/v1/shopee/shop?shopId=12651109&country=id" \
-H "Authorization: Bearer YOUR_API_KEY"
const params = new URLSearchParams({
shopId: "12651109",
country: "id",
});
const response = await fetch(
`https://api.scrapengine.io/api/v1/shopee/shop?${params}`,
{
headers: {
Authorization: "Bearer YOUR_API_KEY",
},
}
);
const data = await response.json();
console.log(data);
import requests
url = "https://api.scrapengine.io/api/v1/shopee/shop"
headers = {"Authorization": "Bearer YOUR_API_KEY"}
params = {
"shopId": "12651109",
"country": "id"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
Response
Success Response (200)
Returns shop information:{
"shopId": "12651109",
"shopName": "Toko Aksesoris HP",
"shopLogo": "https://down-id.img.susercontent.com/file/shop-logo.jpg",
"shopDescription": "Toko aksesoris handphone terlengkap dan terpercaya.",
"shopLocation": "Jakarta Pusat",
"shopUrl": "https://shopee.co.id/shop/12651109",
"followerCount": 15420,
"followingCount": 50,
"productCount": 234,
"rating": 4.9,
"ratingCount": 12500,
"responseRate": 98,
"responseTime": "dalam hitungan jam",
"joinDate": "2019-03-15",
"joinDateDisplay": "Bergabung 5 tahun lalu",
"isOfficialShop": false,
"isPreferredSeller": true,
"isVerified": true,
"badges": ["Star Seller", "Fast Response"],
"country": "id"
}
Response Headers
| Header | Description |
|---|---|
x-remaining-credits | Number of API credits remaining |
x-trace-id | Unique identifier for the request |
Error Responses
| Status | Description |
|---|---|
400 | Bad Request - Missing shopId or unsupported country |
401 | Unauthorized - Invalid or missing API key |
404 | Not Found - Shop not found |
500 | Internal Server Error |
Use Cases
- Seller research: Evaluate seller credibility before purchasing
- Competitive analysis: Monitor competitor shops and their performance
- Partnership discovery: Find potential seller partners
- Market research: Analyze seller landscape in specific categories
Notes
- This endpoint uses browser rendering which may result in longer response times
- Official shops are verified brand stores on Shopee Mall
- Preferred/Star sellers have high ratings and good service records
- Response rate and time indicate seller’s customer service quality
Was this page helpful?