Cimplify Developer Docs
Build custom storefronts, process payments, and manage orders with the Cimplify SDK and powerful REST API.
Integration Paths
SDK (Recommended)
Type-safe wrapper around the API. Perfect for Next.js and React applications.
TSX
import { createCimplifyClient } from '@cimplify/sdk'
const client = createCimplifyClient({
publicKey: 'pk_test_...'
})REST API
Direct HTTP access for server-to-server integrations in any language.
curl
curl https://api.cimplify.io/v1/orders \
-H "X-API-Key: sk_test_..."Setup Environments
| Environment | Public Key | Secret Key | Description |
|---|---|---|---|
| Live | pk_live_ | sk_live_ | Real data and real payments |
| Test | pk_test_ | sk_test_ | Isolated sandbox, no real charges |
Testing Mode
Test mode uses a completely isolated sandbox business. Create your keys securely at app.cimplify.io/settings/developer.