# Shopee API - Get Shopee shop information

## API Overview

- Shop ID
- Shop name
- Shop logo
- User ID
- Username
- Last active time
- Shop rating
- Shop location
- Shop status
- See More

## API URL

`GET https://api.tmapi.io/shopee/shop/shop_info`

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| site | string | Region name abbreviation, for example, Thailand is 'th'.<br/>Optional values: `my`, `th`, `ph`, `id`, `vn`, `sg`, `tw`, `br`, `mx`, `co`, `cl`<br/>Default value: my | false |
| shop_id | integer | Shop ID | false |
| username | string |  | false |

## Security Auth

> Please go to [Console-Account Center](https://console.tmapi.io/account/center) to get your apiToken.

> Add your apiToken to the request parameters. Please refer to the examples below.

## Request Example

```bash

curl --request GET 'https://api.tmapi.io/shopee/shop/shop_info?apiToken=xxxxxx&site=my&shop_id=140500145&username=fangzhong.my'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "shop_id": 873718113,
    "shop_name": "UNPI Shop.id",
    "shop_logo": "https://down-id.img.susercontent.com/file/5a23e9492283de31c2b41a32b056bcb3_tn",
    "user_id": 873746904,
    "username": "unpi_beauty.shop",
    "last_active_time": 1680925950,
    "vacation": false,
    "is_shopee_verified": false,
    "is_official_shop": false,
    "item_count": 89,
    "rate_info": {
      "rating_star": 4.832512,
      "response_rate": 68,
      "rating_bad": 4,
      "rating_normal": 16,
      "rating_good": 600
    },
    "shop_location": "KAB. TANGERANG",
    "follower_count": 192,
    "ctime": 1664449996,
    "status": 1
  }
}

```