Search for Shopee shops by keywordsPending

Information you can get with this API.

  • Shop listings – search results with shop details
  • Shop ratings – shop ratings and review counts
  • Shop location – shop location and delivery areas
  • Shop verification – official shop status and badges
  • Product counts – number of products in each shop
  • Shop categories – main categories the shop sells
  • Shop followers – follower count and engagement

Basic Information.

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.

Request Parameters

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

Request Example

                                
<?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
                                
                            
                        

Response Example

                                
{
  "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.
                        
© 2025 NoxAPI. All rights reserved.