Skip to Content
AdvancedConfiguration

Configuration

Customize Sendd Market to fit your exact needs through environment variables, SDK options, and the admin dashboard.

Environment Variables

VariableDescriptionDefault
SENDD_API_KEYYour API key
SENDD_ENVproduction or sandboxproduction
SENDD_WEBHOOK_SECRETSecret for verifying webhooks
SENDD_LOG_LEVELdebug, info, warn, errorinfo

SDK Configuration

import { SenddMarket } from '@sendd/market-sdk' const market = new SenddMarket({ apiKey: process.env.SENDD_API_KEY, environment: 'sandbox', timeout: 30000, retries: 3, logging: { level: 'debug', destination: 'stdout' } })

Storefront Settings

Configure your storefront through the admin dashboard or the API:

await market.storefront.update({ name: 'My Marketplace', domain: 'shop.example.com', theme: 'modern-dark', currency: 'USD', locale: 'en-US', seo: { title: 'My Marketplace — Buy & Sell Anything', description: 'The best place to buy and sell products online.' } })