Information you can get with this API.
Shop listings – search results with shop detailsShop ratings – shop ratings and review countsShop location – shop location and delivery areasShop verification – official shop status and badgesProduct counts – number of products in each shopShop categories – main categories the shop sellsShop followers – follower count and engagement| API Name | Shopee Shop Search |
|---|---|
| Method | GET |
| API URL | http://api.noxapi.com/shopee/search_shops |
| Security Auth |
apiToken (lấy tại Console - Account Center)
Thêm apiToken vào query parameters khi gọi API.
|
| Field | Type | Explanation | Required |
|---|---|---|---|
site |
string |
Region name abbreviation.
Optional values: my, th, ph, id, vn, sg, tw, br, mx, co, cl.
Default: my.
|
false |
keyword |
string | Search keywords for shops | true |
page |
integer | Page number for pagination (default: 0) | false |
page_size |
integer | Number of shops per page (default: 20, max: 100) | false |
sort_by |
string | Sort by: relevancy, rating, followers, newest |
false |
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://api.noxapi.com/shopee/search_shops?apiToken=xxxxxx&site=my&keyword=electronics&page=0&page_size=20&sort_by=rating",
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;
}
node
index.js
python
app.py
java
Main.java
go
run main.go
{
"code": 200,
"msg": "success",
"data": {
"keyword": "electronics",
"total_count": 1250,
"shops": [
{
"shop_id": 454052120,
"shop_name": "BEST DIY Official Store",
"shop_url": "https://shopee.com.my/shop/454052120",
"shop_location": "Selangor",
"shop_avatar": "https://cf.shopee.com.my/file/shop-avatar.jpg",
"shop_rating": 4.8,
"shop_followers": 12500,
"shop_products_count": 105,
"shopee_verified": true,
"is_official_shop": false,
"is_mart": false,
"is_preferred_plus_seller": true,
"shop_categories": [
"Home Appliances",
"Electronics",
"DIY Tools"
],
"shop_description": "Your trusted partner for DIY tools and home appliances",
"shop_badges": [
"Preferred Plus Seller",
"Shopee Verified"
]
}
],
"has_more": true,
"next_offset": 20
}
}
# Failed to fetch data. Please retry or contact support.
# Invalid request parameters.
# Subscription expired or insufficient balance.
# Request timed out. Please retry with a 60s timeout.
# Internal server error. Please contact support.
# Concurrency limit exceeded. Please reduce request rate.