Payment infrastructure for the internet
Stripe provides APIs for accepting payments, managing subscriptions, sending payouts, and building financial products.
Use Stripe through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
import Stripe from "stripe";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
const stripe = new Stripe("placeholder");
const session = await stripe.checkout.sessions.create({
mode: "payment",
line_items: [{ price: "price_xxx", quantity: 1 }],
success_url: "https://example.com/success",
cancel_url: "https://example.com/cancel",
});Request access and our concierge team will provision credentials for you — usually within 24 hours. No setup on your end.
Request Access