npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@congminh1254/shopee-sdk

v1.4.0

Published

Shopee SDK maintaining by community

Readme

Shopee SDK

CI Coverage Status npm version Node.js Version License: MIT

🎉 The most complete, production-ready TypeScript SDK for Shopee Open API 🎉

Build powerful Shopee integrations with confidence using our fully-featured SDK that covers 100% of Shopee's API endpoints. Trusted by developers, built by the community.

📚 Documentation

Complete Documentation - Comprehensive guides and API references

Quick Links

Getting Started:

API Managers:

Installation

npm install @congminh1254/shopee-sdk

Requirements: Node.js >= 18.0.0

What You Get

✅ Complete TypeScript definitions for all 27 API managers
✅ Automatic token refresh and management
✅ Built-in error handling and retry logic
✅ Zero dependencies (except node-fetch)
✅ Full documentation and examples

Quick Start

Get up and running in minutes! Here's how easy it is to integrate with Shopee:

import { ShopeeSDK, ShopeeRegion } from '@congminh1254/shopee-sdk';

// 1. Initialize the SDK with your credentials
const sdk = new ShopeeSDK({
  partner_id: 123456,
  partner_key: 'your-partner-key',
  region: ShopeeRegion.GLOBAL,
  shop_id: 789012, // Optional for shop-specific operations
});

// 2. Authenticate your shop (OAuth flow)
const authUrl = sdk.getAuthorizationUrl('https://your-app.com/callback');
console.log('Visit:', authUrl);

// After user authorizes, exchange code for token (automatic token storage!)
await sdk.authenticateWithCode('auth-code-from-callback');

// 3. Start using the API - it's that simple!

// Manage your products
const products = await sdk.product.getItemList({
  offset: 0,
  page_size: 20,
});

// Process orders
const orders = await sdk.order.getOrderList({
  time_range_field: 'create_time',
  time_from: Math.floor(Date.now() / 1000) - 86400,
  time_to: Math.floor(Date.now() / 1000),
  page_size: 50,
});

// Track shipments
const shipping = await sdk.logistics.getShippingParameter({
  order_sn: '220615ABCDEF',
});

// Handle returns
const returns = await sdk.returns.getReturnList({
  page_size: 20,
});

// And much more - all with full TypeScript support! 🎉

That's it! The SDK handles token refresh, request signing, error handling, and more automatically.

See the Setup Guide and Authentication Guide for detailed instructions.

Why Choose This SDK?

🚀 Production-Ready & Battle-Tested

  • 75%+ test coverage with 86 comprehensive tests - ensuring reliability in production
  • Zero compromises - Every Shopee API endpoint is implemented and documented
  • Type-safe - Full TypeScript definitions prevent errors before they happen
  • Actively maintained - Regular updates to stay in sync with Shopee API changes

💪 Complete API Coverage - All 27 Managers Implemented

Unlike other SDKs with partial coverage, we provide complete access to every Shopee API:

Core Commerce:

  • 📦 ProductManager - Full product catalog management with 55+ endpoints
  • 🛒 OrderManager - Complete order processing and fulfillment workflow
  • 🚚 LogisticsManager - Comprehensive shipping and tracking operations
  • 💳 PaymentManager - Payment and escrow information management

Marketing & Promotions:

  • 🎟️ VoucherManager - Discount voucher campaigns
  • 💥 DiscountManager - Discount promotion campaigns
  • 🎁 BundleDealManager - Bundle deal promotions
  • AddOnDealManager - Add-on deal promotions
  • ShopFlashSaleManager - Flash sale campaigns
  • 🎯 FollowPrizeManager - Follow prize activities
  • TopPicksManager - Top picks product collections

Store Management:

  • 🏪 ShopManager - Shop information and profile management
  • 🏢 MerchantManager - Merchant information, warehouses, and multi-shop management
  • 📂 ShopCategoryManager - Shop category organization
  • 🖼️ MediaManager & MediaSpaceManager - Image and video upload operations

Advanced Features:

  • 🔐 AuthManager - OAuth flow and token lifecycle management
  • 📢 PushManager - Webhooks and real-time notifications
  • 🌍 GlobalProductManager - Cross-border product management
  • 🔄 ReturnsManager - Return and refund request handling
  • 📊 AdsManager - Advertising campaign management
  • 📈 AccountHealthManager - Performance metrics and analytics
  • 🌐 PublicManager - Public API endpoints (no auth required)
  • 📍 FirstMileManager - First mile logistics operations
  • 🏭 SbsManager - Shopee Business Services warehouse inventory
  • 📦 FbsManager - Fulfillment by Shopee operations
  • 📹 LivestreamManager - Live streaming features

✨ Developer Experience First

  • Intuitive API design - Clean, consistent interfaces across all managers
  • Automatic token refresh - Built-in token management, never worry about expiration
  • Flexible storage - File-based storage included, easy to implement custom solutions
  • Multi-region support - Works seamlessly across all 12 Shopee regions
  • Proxy support - Enterprise-ready HTTP/HTTPS proxy configuration
  • Comprehensive docs - Detailed guides and real-world examples for every feature
  • Full type safety - Complete TypeScript definitions for autocomplete and error prevention

Real-World Use Cases

This SDK is perfect for building:

  • 🏪 Multi-channel E-commerce Platforms - Sync inventory, orders, and products across multiple sales channels
  • 📊 Analytics Dashboards - Track sales performance, customer behavior, and business metrics
  • 🤖 Automation Tools - Automate order processing, inventory updates, and customer communications
  • 🔄 ERP Integrations - Connect Shopee with your existing business systems
  • 📱 Mobile Apps - Build native mobile experiences for shop management
  • 🎯 Marketing Automation - Manage promotions, vouchers, and advertising campaigns programmatically
  • 📦 Inventory Management Systems - Real-time stock tracking across warehouses
  • 🚀 Custom Storefronts - Create unique shopping experiences powered by Shopee's infrastructure

Migrating from Other SDKs?

Switching is easy! Our SDK offers:

  • More complete coverage - Every endpoint is implemented, not just the basics
  • Better TypeScript support - Full type safety from end to end
  • Simpler API - Intuitive, well-organized manager classes
  • Active maintenance - Regular updates and community support
  • Production-ready - Battle-tested with comprehensive test coverage

Check our Migration Guide to get started.

Contributing

We use Conventional Commits for commit messages to automate versioning and release notes.

Examples of commit messages:

  • feat: add support for logistics API - Minor version bump
  • fix: correct error handling in order API - Patch version bump
  • docs: update API documentation - No version bump
  • feat!: rename parameters in product API or feat: rename parameters in product API BREAKING CHANGE: ... - Major version bump

Release Process

This project uses Release Please to automate version management and releases.

The release process follows these steps:

  1. Commits to the main branch are automatically analyzed
  2. When conventional commit messages are detected, Release Please creates or updates a release PR
  3. When the release PR is merged:
    • A new GitHub tag and release is created
    • The package is automatically published to npm
    • The CHANGELOG.md is updated with the release notes

License

MIT