Get Shopee shop informationPending

Information you can get with this API.

  • Shop basic info – shop name, ID, URL, location
  • Shop ratings – overall rating and review counts
  • Shop verification – official status and badges
  • Shop statistics – follower count, product count
  • Shop categories – main product categories
  • Shop description – shop description and policies
  • Shop contact info – contact details and social links

Basic Information.

API Name Shopee Shop Information
Method GET
API URL http://api.noxapi.com/shopee/shop_info
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
shop_id integer Shop ID true

Request Example

                                
<?php
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "http://api.noxapi.com/shopee/shop_info?apiToken=xxxxxx&site=my&shop_id=454052120",
  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": {
    "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_banner": "https://cf.shopee.com.my/file/shop-banner.jpg",
    "shop_rating": 4.8,
    "shop_followers": 12500,
    "shop_products_count": 105,
    "shop_reviews_count": 2840,
    "shopee_verified": true,
    "is_official_shop": false,
    "is_mart": false,
    "is_cb": false,
    "is_preferred_plus_seller": true,
    "shop_categories": [
      "Home Appliances",
      "Electronics",
      "DIY Tools",
      "Garden Tools"
    ],
    "shop_description": "Your trusted partner for DIY tools and home appliances. We provide quality products with excellent customer service.",
    "shop_policies": {
      "return_policy": "7 days return policy",
      "shipping_policy": "Free shipping nationwide",
      "warranty_policy": "1 year warranty on all products"
    },
    "shop_contact": {
      "phone": "+60123456789",
      "email": "support@bestdiy.com",
      "website": "https://bestdiy.com"
    },
    "shop_social": {
      "facebook": "https://facebook.com/bestdiy",
      "instagram": "https://instagram.com/bestdiy",
      "youtube": "https://youtube.com/bestdiy"
    },
    "shop_badges": [
      "Preferred Plus Seller",
      "Shopee Verified",
      "Fast Shipping",
      "Customer Service Excellence"
    ],
    "shop_established": "2020-01-15",
    "shop_languages": ["English", "Malay", "Chinese"],
    "shop_currency": "MYR"
  }
}
                                
                            
# 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.