Build with stablecoins.
REST APIs, a TypeScript SDK, a scriptable CLI, and a scaffolder - everything a team needs to go from API key to live payment without bouncing between tools.
Scaffold a payment app from 9 templates - no config required.
Quickstart
Go from key to first payment fast.
The public developer surface should feel like one path, not four disconnected pages.
CLI
The full API surface, scriptable.
Every resource the platform exposes is available as a CLI command - payments, wallets, apps, contracts, compliance, and API keys.
npm install -g @stablecoin/cli
API
Simple, predictable request shapes.
Initiate payments, manage wallets, and handle compliance with a few lines of code.
import { Stablecoin } from "@stablecoin/sdk";
const client = new Stablecoin({
apiKey: process.env.STABLECOIN_API_KEY,
});
const payment = await client.payments.create({
amount: "1000.00",
stablecoin: "USDC",
toAddress: "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD18",
chain: "base",
metadata: { orderId: "order_123" },
});
console.log(payment.id, payment.status);SDKs & Tools
The full toolchain, with clear readiness states.
We keep the surface honest: what is available now, and what is still on the roadmap.
JavaScript / TypeScript SDK
Availablenpm install @stablecoin/sdk
CLI - stablecoin
Availablenpm install -g @stablecoin/cli
Project scaffolder
Availablenpx create-stablecoin-app
Python, Go, Ruby
In progressRoadmapped after JS/TS stabilization