Official Python SDK for the Shoppex Developer API.
This package is built for backend jobs, scripts, services, and automation that talk to /dev/v1/*.
pip install shoppexiofrom shoppexio import ShoppexClient
client = ShoppexClient(api_key="shx_your_api_key")
me = client.me.get()
products = client.products.list({"page": 1, "limit": 20})Use one of these:
api_keyfor your own server-to-server integrationsaccess_tokenfor OAuth app installs
meproductsorderscustomerspaymentsinvoicescouponswebhooks
This covers the common backend workflows:
- product reads and writes
- order creation, completion, fulfillment, and refunds
- customer reads and writes
- payment and invoice flows
- coupon checks and CRUD
- webhook management and delivery logs
- Developer API docs: docs.shoppex.io/api-reference/introduction
- SDK docs: docs.shoppex.io/api-reference/sdks