Overview
The Shopee Open Platform API allows sellers and developers to integrate with Shopee, one of Southeast Asia's largest e-commerce platforms. You can manage product listings, retrieve order data, handle logistics, and more. An API key is required, and you need to register as a Shopee partner to get access.
Beginner Tip
Shopee uses HMAC-SHA256 request signing in addition to your API key — every request must include a correctly computed signature or it will be rejected. Follow the authentication guide closely before writing any code.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Shopee",
"description": "Shopee's official API for integration of various services from Shopee",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
shop_id Unique identifier for the Shopee shop. shop_name Display name of the shop as shown on the Shopee platform. status Current operational status of the shop, e.g., NORMAL or BANNED. region Country/region code where the shop is registered, such as SG, MY, or TH. response_type Indicates the authorization level granted to your app for this shop. Implementation Example
const url = "https://open.shopee.com/documents";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Explore More
Similar APIs
View All →Best Buy
⭐ Beginner's PickThe Best Buy API gives you access to Best Buy's product catalog, store locations, pricing, and buying options in real time.
Dummy Products
Dummy Products provides programmatic access to an api to fetch dummy e-commerce products json data with placeholder images via REST API.
Lazada
The Lazada Open Platform API lets sellers and developers access Lazada's Southeast Asian marketplace to retrieve product data, manage orders, track seller performance metrics, and handle logistics.
Mercadolibre
⭐ Beginner's PickMercado Libre is the largest e-commerce marketplace in Latin America, and its API gives developers access to product listings, pricing, seller data, and order management across 18 countries.
Octopart
Octopart is an electronic component search engine, and its API gives you access to detailed part data including pricing from hundreds of distributors, stock availability, datasheets, and technical specifications.