> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapengine.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Shopee Shop

> Get shop information from Shopee Indonesia by shop ID

## Overview

The `/shopee/shop` endpoint retrieves shop/seller information from Shopee Indonesia (shopee.co.id) including shop details, ratings, follower count, and verification status.

<Note>
  This endpoint uses **browser rendering** to bypass anti-bot protection. Requests may take longer compared to renderless endpoints.
</Note>

<Warning>
  Currently only Indonesia (country=id) is supported. More Southeast Asian markets will be added in future updates.
</Warning>

## Credits

**25 credits** per successful request.

## Parameters

### Query Parameters

<ParamField query="shopId" type="string" required>
  The Shopee shop/seller ID (e.g., "12651109").
</ParamField>

<ParamField query="country" type="string" required>
  Country code. Currently only `id` (Indonesia) is supported.
</ParamField>

## Example Requests

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.scrapengine.io/api/v1/shopee/shop?shopId=12651109&country=id" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  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);
  ```

  ```python Python theme={null}
  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())
  ```
</CodeGroup>

## Response

### Success Response (200)

Returns shop information:

```json theme={null}
{
  "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
