SDK
Everything you need to ship
The Vibe SDK gives you typed access to every part of the platform — app creation, marketplace publishing, billing, and user management.
- ▸Full TypeScript support with auto-complete
- ▸Streaming responses for AI-powered features
- ▸Pagination helpers and retry logic built in
- ▸Works in Node.js, Deno, and edge runtimes
example.ts
import { VibeSDK } from '@vibe-market/sdk'
const vibe = new VibeSDK({ apiKey: 'your-key' })
// Deploy an app
const app = await vibe.apps.create({
name: 'My App',
template: 'dashboard',
})
// Publish to marketplace
await vibe.apps.publish(app.id, {
price: 49,
category: 'productivity',
})Platform
Platform capabilities
App Builder API
Programmatically create, configure, and customize apps without touching the UI.
Marketplace API
List, search, filter, and manage app listings directly from your codebase.
Webhooks
Receive real-time events for installs, purchases, updates, and user activity.
White-Label SDK
Embed marketplace apps anywhere with your own branding and custom domain.
Quickstart
Up and running in minutes
01
Sign up and generate your API key
Create an account in the Studio and grab your key from the API settings panel.
02
Install the SDK
npm install @vibe-market/sdk03
Build and deploy your first app
Follow the quickstart guide to ship your first app to the marketplace.