Agent-readyllms.txtMCP
The Identity-Powered Checkout Layer.
Built for Engineers and AI Agents.
Modular React checkout and headless APIs. Reach 137M+ pre-authenticated shoppers with built-in payments and fraud protection. Structured docs, an MCP server, and agent skills help AI tools integrate without guessing API behavior.
// Configure custom checkout with a secure transaction token
const cart = {
id: "cart_9a2b8c7d",
token: "tok_secure_from_backend"
};
const callbacks = {
onSuccess: async (transaction, callback) => {
// Send token to your backend to finalize the transaction
await fetch("/api/capture", {
method: "POST",
body: JSON.stringify({ reference: transaction.reference })
});
callback();
},
onClose: () => console.log("Checkout closed")
};
// Mount modal instantly linked to the 137M+ shopper network
await BoltCheckout.configure(cart, {}, callbacks);Powering the World's Best Brands & Retailers
Quickstart
Choose your stack and get Bolt running in minutes.
JavaScript
Add Bolt Checkout to any web app with the Connect script.
React
Mount modular checkout components in React.
Next.js
Client-side checkout mounting for Next.js.
React Native
Native checkout flows for iOS and Android with Expo.
iOS
Swift Package for in-app checkout on Apple devices.
Android
Native Android SDK for embedded mobile checkout.
Unity
In-game checkout for iOS and Android with the Bolt Unity SDK.
Build with AI agents
Docs, MCP, and skills for coding agents.
Explore
Bolt products and the use cases they power.
Integrate
First-class developer experience
Configure checkout visually, sync React components in real time, and orchestrate the flow with headless APIs.
UI configurator
React synced code
export function App() {
return (
<BoltCheckout
theme="dark"
borderRadius={8}
accentColor="#006CFF"
enableOneClick={true}
/>
);
}Headless API layer
Programmatic control over webhooks, fraud filters, and routing rules.