Kinetic Flow
Financial software engineering infrastructure for developers and digital-native fintechs building modern payment experiences.
Getting Started
Get started with your first API call in minutes.
// Install the SDK
npm install @kinetic/sdk
// Initialize and make your first payment
const kinetic = new KineticSDK({
apiKey: process.env.KINETIC_API_KEY
});
const payment = await kinetic.payments.create({
amount: 1000,
currency: "USD",
destination: "acc_123456789"
});