The E-commerce Infrastructure for Developers
Build a store in
5 lines of code.
SwatBloc gives you a complete e-commerce backend with a typed SDK. Focus on your frontend, we handle the boring stuff.
Free until production
Fully Typed SDK
Next.js Ready
store.ts
import{ SwatBloc }from'@swatbloc/sdk'// Initialize the clientconststore=newSwatBloc({apiKey:'sb_live_123...'})// Create a checkout sessionconstcart=awaitstore.cart.create([{ productId:'prod_123', quantity:1}])