Hello, Kronotrop
A working walkthrough of the Kronotrop SDK. Copy a snippet, run it, and watch a real webhook roundtrip in under 60 seconds.
Setup
Install the SDK, set your KRONOTROP_API_KEY, and run the hello example. The SDK ships a first-class TypeScript definition and matches Stripe's idempotency semantics so you can safely retry any call.
// hello.ts import { Kronotrop } from "@kronotrop/sdk"; const k = new Kronotrop({ apiKey: process.env.KRONOTROP_API_KEY ! }); const charge = await k.payments.create({ amount: 1299, currency: "USD", idempotencyKey: crypto.randomUUID(), }); console.log(charge.id);
Have a question about this page? Ask-AI (RAG-grounded via MCP client) will answer in < 400 ms with source citations.