Smpl Config icon Primary Product

Smpl Config

API-first app configuration as a service for teams that need centralized config control, strong developer ergonomics, and real-time runtime updates.

Why teams adopt Smpl Config

  • API-first read and write workflows for app configuration
  • Centralized configuration values across services and environments
  • Real-time updates over WebSockets
  • Listener and callback support in application code
  • SDK integrations for practical implementation speed

Platform positioning

Smpl Config is the first service in the smplkit platform. It provides configuration as a service with predictable APIs so teams can avoid building internal config infrastructure too early.

Code examples

Configuration updates propagate automatically via WebSocket.

Python

from smplkit import config

config.initialize(api_key="sk_live_...")
timeout = config.get("checkout.timeout")

Node

const smpl = createSmplClient({ apiKey: "sk_live_..." })
const timeout = await smpl.config("checkout.timeout")

smpl.onConfigChange((key, value) => {
  console.log(key, value)
})

Join the launch list

Get early access updates for Smpl Config and upcoming services.